Add tail/text/_transform.scss

This commit is contained in:
0x1eef 2024-02-01 14:16:40 -03:00
parent 0a74e22dee
commit 92ae35122c
7 changed files with 32 additions and 2 deletions

18
dist/tail.css vendored

File diff suppressed because one or more lines are too long

BIN
dist/tail.css.gz vendored

Binary file not shown.

2
dist/tail.min.css vendored

File diff suppressed because one or more lines are too long

BIN
dist/tail.min.css.gz vendored

Binary file not shown.

View file

@ -7,4 +7,5 @@
@import "tail/display/index";
@import "tail/flex/index";
@import "tail/font/index";
@import "tail/text/index";
@import "tail/effects/index";

View file

@ -0,0 +1,12 @@
.uppercase {
text-transform: uppercase;
}
.lowercase {
text-transform: lowercase;
}
.capitalize {
text-transform: capitalize;
}
.normal-case {
text-transform: none;
}

1
src/tail/text/index.scss Normal file
View file

@ -0,0 +1 @@
@import "transform";