Skip to content

Commit

Permalink
fixing linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jongund committed Dec 3, 2024
1 parent eb1810c commit 15e5e00
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions content/practices/high-contrast/css/switch-color-scheme.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ button.color-scheme[role="switch"] {

button.color-scheme[role="switch"][aria-checked="true"] {
background-color: #333;
color: #eeeee;
border-color: #3366cc;
color: #eee;
border-color: #36c;
}

button.color-scheme[role="switch"] .label {
Expand Down Expand Up @@ -50,7 +50,7 @@ button.color-scheme[role="switch"] svg rect {
button.color-scheme[role="switch"] svg circle.off {
display: block;
stroke: #757575;
fill: #ffffff;
fill: #fff;
fill-opacity: 1;
}

Expand All @@ -59,8 +59,8 @@ button.color-scheme[role="switch"] svg circle.on {
}

button.color-scheme[role="switch"][aria-checked="true"] svg rect {
fill: #3366cc;
stroke: #3366cc;
fill: #36c;
stroke: #36c;
}

button.color-scheme[role="switch"][aria-checked="true"] svg circle.off {
Expand All @@ -69,8 +69,8 @@ button.color-scheme[role="switch"][aria-checked="true"] svg circle.off {

button.color-scheme[role="switch"][aria-checked="true"] svg circle.on {
display: block;
stroke: #ffffff;
fill: #ffffff;
stroke: #fff;
fill: #fff;
fill-opacity: 1;
}

Expand Down

0 comments on commit 15e5e00

Please sign in to comment.