Files
xrpl-dev-portal/styles/light/_mixins.scss
Jake 6e02aeb7ab Add light theme first pass
Toggle is only temp to test. Need to move in nav for final.
Will need further adjusting colors.
2021-07-07 13:54:37 -07:00

5 lines
120 B
SCSS

@mixin prefers-color-scheme( $scheme: dark ) {
@media (prefers-color-scheme: #{$scheme}) {
@content;
}
}