Skip to content

Commit

Permalink
Merge pull request #6 from toastal/double-colons
Browse files Browse the repository at this point in the history
Double colons
  • Loading branch information
mike-engel committed Jul 7, 2019
2 parents d29feb8 + 66fd6f3 commit 5db5591
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions a11y.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*:focus:not(:focus-visible),
*:before:focus:not(:focus-visible),
*:after:focus:not(:focus-visible) {
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
outline: none;
}

Expand All @@ -27,8 +27,8 @@
/* prettier-ignore */
@media(prefers-reduced-motion: reduce) {
*,
*:before,
*:after {
*::before,
*::after {
transition: none !important;
animation: none !important;
scroll-behavior: auto !important;
Expand Down
4 changes: 2 additions & 2 deletions reset.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*,
*:before,
*:after {
*::before,
*::after {
box-sizing: border-box;
}

Expand Down

0 comments on commit 5db5591

Please sign in to comment.