1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-30 01:10:07 +02:00

refactor(container): cleanup rounded box-shadow colors

ref #60
This commit is contained in:
Joshua Rouzer
2018-12-09 01:32:34 -05:00
parent 3ca6396035
commit 04d2296432

View File

@@ -82,22 +82,23 @@
} }
@mixin rounded($base, $background) { @mixin rounded($base, $background) {
color: $base;
border: none; border: none;
border-radius: 0; border-radius: 0;
// prettier-ignore // prettier-ignore
box-shadow: box-shadow:
0 -4px $background, 0 -4px $background,
0 -8px $base, 0 -8px,
4px 0 $background, 4px 0 $background,
4px -4px $base, 4px -4px,
8px 0 $base, 8px 0,
0 4px $background, 0 4px $background,
0 8px $base, 0 8px,
-4px 0 $background, -4px 0 $background,
-4px 4px $base, -4px 4px,
-8px 0 $base, -8px 0,
-4px -4px $base, -4px -4px,
4px 4px $base; 4px 4px;
} }
&.is-rounded { &.is-rounded {