Skip to content

Commit 8947d4d

Browse files
committed
feat: add text modifiers
1 parent 5a8aafd commit 8947d4d

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

packages/panda-san/src/core/font.scss

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,19 @@ body {
2020
}
2121
}
2222
}
23+
24+
.is-uppercase {
25+
text-transform: uppercase;
26+
}
27+
28+
.has-text-underline {
29+
text-decoration: underline;
30+
}
31+
32+
.has-border-underline {
33+
border-bottom: solid 0.25rem;
34+
}
35+
36+
.has-highlighted-underline {
37+
border-bottom: solid 0.25rem $primary-color;
38+
}

0 commit comments

Comments
 (0)