replace text capitalize with capitalize first word

This commit is contained in:
geoffrey45
2022-08-03 15:06:08 +03:00
parent 327207f1ab
commit a9d23b3cb3
11 changed files with 25 additions and 23 deletions
+7
View File
@@ -23,6 +23,13 @@
text-overflow: ellipsis;
}
.cap-first {
display: inline-block;
&::first-letter {
text-transform: uppercase;
}
}
.rounded {
border-radius: $small;
}