fix clips appearance
This commit is contained in:
parent
b50df3400a
commit
5b7b3a67be
2 changed files with 5 additions and 5 deletions
|
@ -39,7 +39,7 @@
|
||||||
<p for="settings_analysis_description"></p>
|
<p for="settings_analysis_description"></p>
|
||||||
<p for="OOBE_quickstart_API_intro"></p>
|
<p for="OOBE_quickstart_API_intro"></p>
|
||||||
<section>
|
<section>
|
||||||
<section class="card">
|
<section class="card horizontal">
|
||||||
<figure class="card-image">
|
<figure class="card-image">
|
||||||
<img src="/media/screenshots/API Step 1.png">
|
<img src="/media/screenshots/API Step 1.png">
|
||||||
<a class="btn-floating halfway-fab" href="https://console.cloud.google.com/projectcreate" target="_blank" data-icon="open-in-new"></a>
|
<a class="btn-floating halfway-fab" href="https://console.cloud.google.com/projectcreate" target="_blank" data-icon="open-in-new"></a>
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
<p for="OOBE_quickstart_API_Step1"></p>
|
<p for="OOBE_quickstart_API_Step1"></p>
|
||||||
</figcaption>
|
</figcaption>
|
||||||
</section>
|
</section>
|
||||||
<section class="card">
|
<section class="card horizontal">
|
||||||
<figure class="card-image">
|
<figure class="card-image">
|
||||||
<img src="/media/screenshots/API Step 2.png">
|
<img src="/media/screenshots/API Step 2.png">
|
||||||
<a class="btn-floating halfway-fab" href="https://aistudio.google.com/app/apikey" target="_blank" data-icon="open-in-new"></a>
|
<a class="btn-floating halfway-fab" href="https://aistudio.google.com/app/apikey" target="_blank" data-icon="open-in-new"></a>
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
<p for="OOBE_quickstart_API_Step2"></p>
|
<p for="OOBE_quickstart_API_Step2"></p>
|
||||||
</figcaption>
|
</figcaption>
|
||||||
</section>
|
</section>
|
||||||
<section class="card">
|
<section class="card horizontal">
|
||||||
<figure class="card-image">
|
<figure class="card-image">
|
||||||
<img src="/media/screenshots/API Step 3.png">
|
<img src="/media/screenshots/API Step 3.png">
|
||||||
</figure>
|
</figure>
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
<p for="OOBE_quickstart_API_Step3"></p>
|
<p for="OOBE_quickstart_API_Step3"></p>
|
||||||
</figcaption>
|
</figcaption>
|
||||||
</section>
|
</section>
|
||||||
<section class="card">
|
<section class="card horizontal">
|
||||||
<figure class="card-image">
|
<figure class="card-image">
|
||||||
<img src="/media/screenshots/API Step 4.png">
|
<img src="/media/screenshots/API Step 4.png">
|
||||||
</figure>
|
</figure>
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
import {global} from "/scripts/secretariat.js";
|
import {global} from "/scripts/secretariat.js";
|
||||||
import Page from "/scripts/pages/page.js";
|
import Page from "/scripts/pages/page.js";
|
||||||
import texts from "/scripts/mapping/read.js";
|
import texts from "/scripts/mapping/read.js";
|
||||||
import nested from "/scripts/utils/nested.js";
|
|
||||||
|
|
||||||
class Page_MiniConfig extends Page {
|
class Page_MiniConfig extends Page {
|
||||||
constructor () {
|
constructor () {
|
||||||
|
@ -97,6 +96,7 @@ class Page_MiniConfig extends Page {
|
||||||
const set_classes = () => {
|
const set_classes = () => {
|
||||||
Object.keys(ELEMENTS[STEP_NUMBER][`container`]).forEach((PART) => {
|
Object.keys(ELEMENTS[STEP_NUMBER][`container`]).forEach((PART) => {
|
||||||
ELEMENTS[STEP_NUMBER][`container`][PART].classList.add(`card`.concat(([`container`].includes(PART)) ? `` : `-`.concat(PART)));
|
ELEMENTS[STEP_NUMBER][`container`][PART].classList.add(`card`.concat(([`container`].includes(PART)) ? `` : `-`.concat(PART)));
|
||||||
|
[`container`].includes(PART) ? ELEMENTS[STEP_NUMBER][`container`][PART].classList.add(`horizontal`) : null;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue