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 0b380ed commit bc2d4bcCopy full SHA for bc2d4bc
src/components/TutorialsOverview/Hero.vue
@@ -75,6 +75,19 @@ export default {
75
76
.hero {
77
@include breakpoint-content;
78
+
79
+ @media screen {
80
+ // ensure dark colors are always used, regardless of the selected
81
+ // light/dark/auto color scheme preference
82
+ //
83
+ // unfortunately the order of the property declaration matters here due
84
+ // to the way that some properties refer to others, which is why both the
85
+ // light and the dark vars are included here, even though the dark ones
86
+ // override the light ones...
87
+ @include color-vars-light;
88
+ @include color-vars-dark;
89
+ }
90
91
padding-bottom: rem(80px);
92
padding-top: rem(80px);
93
}
0 commit comments