1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-04-21 22:52:42 +02:00

updating bad variable

This commit is contained in:
Ernesto Mancebo 2018-11-30 18:34:36 -04:00
parent eba0730728
commit 2ecd91c113
4 changed files with 208 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
css/nes.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
@mixin pixelize($matrix, $colors, $size) {
$ret: "";
$moz: $moz + ",";
$moz: "";
@for $i from 1 through length($matrix) {
$row: nth($matrix, $i);
@ -11,12 +11,12 @@
@if $dot != 0 {
@if $ret != "" {
$ret: $ret + ",";
$moz: $moz + ",";
}
$color: nth($colors, $dot);
$ret: $ret + ($j * $size) + " " + ($i * $size) + " " + $color;
$moz: $moz + ($j * $size)+" "+ ($i * $size)+" 0 0.020em " + $color;
}
}
}
@ -27,5 +27,4 @@
@-moz-document url-prefix() {
-webkit-box-shadow: unquote($moz);
}
}