Skip to content

Commit

Permalink
fix(high-contrast): apply styles to new selector
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Feb 6, 2024
1 parent c147895 commit 7acf13c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions core/src/css/themes/high-contrast-dark.always.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
@include high-contrast-dark-base-theme();
}

.ios body {
:root.ios {
@include high-contrast-dark-ios-theme();
}

.md body {
:root.md {
@include high-contrast-dark-md-theme();
}
4 changes: 2 additions & 2 deletions core/src/css/themes/high-contrast-dark.system.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
@include high-contrast-dark-base-theme();
}

.ios body {
:root.ios {
@include high-contrast-dark-ios-theme();
}

.md body {
:root.md {
@include high-contrast-dark-md-theme();
}
}
2 changes: 1 addition & 1 deletion core/src/css/themes/high-contrast.always.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
@include high-contrast-light-base-theme();
}

.md body {
:root.md {
@include high-contrast-light-md-theme();
}
2 changes: 1 addition & 1 deletion core/src/css/themes/high-contrast.system.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@include high-contrast-light-base-theme();
}

.md body {
:root.md {
@include high-contrast-light-md-theme();
}
}

0 comments on commit 7acf13c

Please sign in to comment.