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 ba04293 commit f9b2565Copy full SHA for f9b2565
projects/www/src/styles.scss
@@ -5,12 +5,16 @@
5
@use './code_theme.scss';
6
7
html {
8
- color-scheme: light dark;
+ color-scheme: dark;
9
@include mat.theme((
10
color: mat.$violet-palette,
11
typography: Roboto,
12
density: 0
13
));
14
+ /* Prevent font size inflation */
15
+ -moz-text-size-adjust: none;
16
+ -webkit-text-size-adjust: none;
17
+ text-size-adjust: none;
18
}
19
20
*,
@@ -19,13 +23,6 @@ html {
23
box-sizing: border-box;
24
21
25
22
-/* Prevent font size inflation */
-html {
- -moz-text-size-adjust: none;
- -webkit-text-size-adjust: none;
26
- text-size-adjust: none;
27
-}
28
-
29
/* Remove default margin in favour of better control in authored CSS */
30
body,
31
h1,
0 commit comments