Skip to content

Commit

Permalink
ktl-1737 fix: capitalize only first letter (#3931)
Browse files Browse the repository at this point in the history
  • Loading branch information
krutilov authored Nov 21, 2024
1 parent 6438301 commit 750d720
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@

& .checkbox {
pointer-events: none;
&:first-letter {
text-transform: uppercase;
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,10 @@
pointer-events: none;
}

.dropdown--option .checkbox:first-letter {
text-transform: uppercase;
}

.dropdown--overlay {
background-color: hsla(0, 0%, 54%, 0.5);
bottom: 0;
Expand Down
Loading

0 comments on commit 750d720

Please sign in to comment.