Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit ab6ad5a

Browse files
committed
Autoformat
1 parent ad1eb1d commit ab6ad5a

File tree

3 files changed

+31
-7
lines changed

3 files changed

+31
-7
lines changed

src/assets/global.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ body,
5656
font-family: Exo2 !important;
5757
}
5858

59-
.codejar-wrap code[class*=language-],
60-
.codejar-wrap pre[class*=language-] {
61-
color: #25292E !important;
62-
background: #FFFFFF !important;
59+
.codejar-wrap code[class*='language-'],
60+
.codejar-wrap pre[class*='language-'] {
61+
color: #25292e !important;
62+
background: #ffffff !important;
6363
font-size: 24px !important;
6464
line-height: 1.5 !important;
6565
text-shadow: none !important;
@@ -89,4 +89,4 @@ body,
8989
.hero_component button {
9090
width: 100%;
9191
}
92-
}
92+
}

src/layouts/ApiGuide.svelte

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,19 @@
33
All these operations can be also done programmatically via the <a href="https://github.com/tilde-lab/metis-client">Metis API</a>.
44
</div>
55
<div class="api_body">
6-
<Slidy {slides} {index} let:item snap="center" axis="y" --slidy-slide-gap="7%" loop={true} navigation={false} arrows={false} counter={false} autoplay={true}>
6+
<Slidy
7+
{slides}
8+
{index}
9+
let:item
10+
snap="center"
11+
axis="y"
12+
--slidy-slide-gap="7%"
13+
loop={true}
14+
navigation={false}
15+
arrows={false}
16+
counter={false}
17+
autoplay={true}
18+
>
719
<figure>
820
<img width={item.width} height={item.height} src={item.src} alt="Stable Diffusion Neural Art" title="Stable Diffusion Neural Art" />
921
</figure>

src/layouts/Visualize.svelte

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<div class="visualize">
22
<Grid stack>
33
<Col col="5">
4-
<Slidy {slides} {index} let:item snap="center" axis="y" --slidy-slide-width="100%" loop={true} navigation={false} arrows={false} counter={false} autoplay={true}>
4+
<Slidy
5+
{slides}
6+
{index}
7+
let:item
8+
snap="center"
9+
axis="y"
10+
--slidy-slide-width="100%"
11+
loop={true}
12+
navigation={false}
13+
arrows={false}
14+
counter={false}
15+
autoplay={true}
16+
>
517
<figure>
618
<img width={item.width} height={item.height} src={item.src} alt="Stable Diffusion Neural Art" title="Stable Diffusion Neural Art" />
719
</figure>

0 commit comments

Comments
 (0)