Skip to content

Commit 2421da6

Browse files
style: separator only on wider screen
Signed-off-by: David Dal Busco <david.dalbusco@outlook.com>
1 parent 6e53ad5 commit 2421da6

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

src/components/Build/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default function Build(): JSX.Element {
4949
link="/docs/guides/astro"
5050
icon={<Astro />}
5151
/>
52-
52+
<span className={styles.separator}></span>
5353
<Guide
5454
title="Juno can also be extended with serverless functions written in Rust."
5555
link="/docs/guides/rust"

src/components/Build/styles.module.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,11 @@
3131
.link {
3232
font-size: var(--ifm-h6-font-size);
3333
}
34+
35+
.separator {
36+
display: none;
37+
38+
@media screen and (min-width: 768px) {
39+
display: block;
40+
}
41+
}

0 commit comments

Comments
 (0)