Skip to content

Commit

Permalink
Merge conflict corrections with master.
Browse files Browse the repository at this point in the history
  • Loading branch information
guastallaigor committed Nov 30, 2018
2 parents d062c2c + 4c6bf1f commit b3f56c9
Show file tree
Hide file tree
Showing 8 changed files with 1,151 additions and 1,137 deletions.
86 changes: 45 additions & 41 deletions css/nes.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/nes.css.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion css/nes.min.css

Large diffs are not rendered by default.

2,182 changes: 1,091 additions & 1,091 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion scss/elements/buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
background-color: $background;
box-shadow: inset -4px -4px $shadow;

&:hover {
&:hover,
&:focus {
background-color: $hover-background;
box-shadow: inset -6px -6px $shadow;
}
Expand Down
9 changes: 8 additions & 1 deletion scss/elements/radios.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,17 @@
top: -2px;
left: -20px;
content: "";
animation: blink 1s infinite steps(1);

@include pixelize($radio, $colors, 2px);
}

&:checked:hover,
&:checked:focus {
& + span::before {
animation: blink 1s infinite steps(1);
}
}

&:checked:focus + span::before {
@include pixelize($radio-checked-focus, $colors, 2px);
}
Expand Down
1 change: 1 addition & 0 deletions scss/form/inputs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
-4px 0 $border;
}

max-width: 100%;
padding: 0.5rem 1rem;
margin: 4px;
border: none;
Expand Down
2 changes: 1 addition & 1 deletion scss/utilities/icon-mixin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@

width: $size;
height: $size;
box-shadow: unquote($ret + ";");
box-shadow: unquote($ret);
}

0 comments on commit b3f56c9

Please sign in to comment.