Skip to content

Commit

Permalink
[selectors-4] Fix typos in usage of css variables
Browse files Browse the repository at this point in the history
  • Loading branch information
FremyCompany committed Sep 10, 2018
1 parent 9ddd5a0 commit afbffa4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions selectors-4/Overview.bs
Expand Up @@ -2257,15 +2257,15 @@ The Focus-Indicated Pseudo-class: '':focus-visible''</h3>

<pre highlight=css>
:root {
focus-gold: #ffbf47;
--focus-gold: #ffbf47;
}

:focus-visible {
outline: 3px solid --var(focus-gold);
outline: 3px solid var(--focus-gold);
}

a:focus-visible {
background-color: --var(focus-gold);
background-color: var(--focus-gold);
}
</pre>
</div>
Expand Down Expand Up @@ -2320,7 +2320,7 @@ The Focus-Indicated Pseudo-class: '':focus-visible''</h3>
}

:focus-visible {
outline: 3px solid --var(focus-gold);
outline: 3px solid var(--focus-gold);
}
</div>

Expand Down

0 comments on commit afbffa4

Please sign in to comment.