Skip to content

Commit 23be2c7

Browse files
style: review
1 parent 22013a1 commit 23be2c7

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

src/components/Hero/styles.module.scss

+5
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,10 @@
3232

3333
.actions {
3434
display: flex;
35+
flex-direction: column-reverse;
3536
gap: 1rem;
37+
38+
@media screen and (min-width: 768px) {
39+
flex-direction: row;
40+
}
3641
}

src/components/Outro/index.tsx

+2-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ import Start from "@site/src/components/Start";
55
export default function Outro(): JSX.Element {
66
return (
77
<div className={styles.outro}>
8-
<p className={`${styles.sub} ${styles.ease}`}>
9-
Develop your next decentralized app with{" "}
10-
<span className={styles.bold}>ease</span>.
11-
</p>
128
<p className={`${styles.sub} ${styles.time}`}>
13-
Launch it in <span className={styles.bold}>no time</span>.
9+
Develop your next decentralized app in{" "}
10+
<span className={styles.bold}>no time</span>.
1411
</p>
1512

1613
<Start />

src/components/Outro/styles.module.scss

+1-5
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,8 @@
1313
font-size: var(--ifm-h3-font-size);
1414
}
1515

16-
.ease {
17-
max-width: 78vw;
18-
}
19-
2016
.time {
21-
margin: 0 0 3rem;
17+
margin: 0 0 2rem;
2218
}
2319

2420
.bold {

src/pages/index.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010

1111
.section {
12-
padding: 6rem 2rem 4rem;
12+
padding: 5rem 2rem 4rem;
1313
}
1414

1515
.block {

0 commit comments

Comments
 (0)