Skip to content

Commit

Permalink
font smoothing
Browse files Browse the repository at this point in the history
  • Loading branch information
damongolding committed Feb 6, 2025
1 parent a3261ba commit 2569d0d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frontend/public/assets/css/kiosk.css
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-rendering: optimizeLegibility;
font-smoothing: always;
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: grayscale;
}
*:focus {
outline: none;
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/css/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
box-sizing: border-box;
user-select: none;

text-rendering: optimizeLegibility;

font-smoothing: always;
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: grayscale;

&:focus {
outline: none;
border: none;
Expand Down

0 comments on commit 2569d0d

Please sign in to comment.