Skip to content

Commit

Permalink
docs: fix font smoothing across projects (#10183)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahednasser authored Nov 20, 2024
1 parent bef89e4 commit 765f99e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion www/apps/api-reference/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
}

html {
-webkit-font-smoothing: antialiased;
@apply antialiased;
text-rendering: optimizeLegibility;
}

body {
Expand Down
3 changes: 2 additions & 1 deletion www/apps/book/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
@layer base {

html {
-webkit-font-smoothing: antialiased;
@apply antialiased;
text-rendering: optimizeLegibility;
}

body {
Expand Down
3 changes: 2 additions & 1 deletion www/apps/resources/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
@layer base {

html {
--webkit-font-smoothing: antialiased;
@apply antialiased;
text-rendering: optimizeLegibility;
overscroll-behavior-y: none;
}

Expand Down
3 changes: 2 additions & 1 deletion www/apps/ui/src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

@layer base {
html {
-webkit-font-smoothing: antialiased;
@apply antialiased;
text-rendering: optimizeLegibility;
}
.html {
@apply text-medusa-fg-base;
Expand Down
3 changes: 2 additions & 1 deletion www/apps/user-guide/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
@layer base {

html {
-webkit-font-smoothing: antialiased;
@apply antialiased;
text-rendering: optimizeLegibility;
}

body {
Expand Down

0 comments on commit 765f99e

Please sign in to comment.