Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 98d6c27

Browse files
author
Manuel Proß
committed
feat(web): add different string prefix for h2
1 parent b81ee69 commit 98d6c27

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

web/src/styles/_text.scss

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
.heading {
22
@apply font-semibold text-primary mb-[32px];
3-
4-
&::before {
5-
content: ">_ ";
6-
}
73
}
84

95
.h1 {
106
@extend .heading;
7+
118
@apply text-xl;
9+
10+
&::before {
11+
content: ">_ ";
12+
}
1213
}
1314

1415
.h2 {
1516
@extend .heading;
17+
1618
@apply font-fira text-lg;
19+
20+
&::before {
21+
content: "> ";
22+
}
1723
}
1824

1925
p.paragraph {

0 commit comments

Comments
 (0)