We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146a783 commit 90f14beCopy full SHA for 90f14be
src/App.css
@@ -44,6 +44,14 @@
44
-moz-osx-font-smoothing: grayscale;
45
}
46
47
+#root {
48
+ /* force WebKit to promote into its compositor and repaint reliably (fix macos issue) */
49
+ -webkit-transform: translate3d(0, 0, 0);
50
+ transform: translate3d(0, 0, 0);
51
+ -webkit-backface-visibility: hidden;
52
+ backface-visibility: hidden;
53
+}
54
+
55
/*
56
* Set scrollbar-gutter to prevent sidebar-induced layout shift on Windows
57
* https://github.com/saadeghi/daisyui/issues/2859#issuecomment-2383862183
0 commit comments