mirror of
https://github.com/nostalgic-css/NES.css.git
synced 2025-08-26 15:34:33 +02:00
refactor: add fill-gaps utility
This commit is contained in:
@@ -33,5 +33,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $ash, $ash-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -35,5 +35,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $bcrikko, $bcrikko-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -35,5 +35,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $bulbasaur, $bulbasaur-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -36,5 +36,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $charmander, $charmander-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -34,5 +34,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $kirby, $kirby-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -34,5 +34,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $mario, $mario-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -29,5 +29,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $logo, $logo-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -29,5 +29,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $logo, $logo-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -51,6 +51,7 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $octocat-1, $octocat-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
|
||||
&.animate::before {
|
||||
|
@@ -39,5 +39,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $phone, $phone-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -32,5 +32,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $pokeball, $pokeball-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -45,5 +45,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $smartphone, $smartphone-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -29,5 +29,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $logo, $logo-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -30,5 +30,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $logo, $logo-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -35,5 +35,6 @@
|
||||
background: transparent;
|
||||
|
||||
@include pixelize($size, $squirtle, $squirtle-colors);
|
||||
@include fill-gaps();
|
||||
}
|
||||
}
|
||||
|
@@ -1,6 +1,7 @@
|
||||
@charset "utf-8";
|
||||
|
||||
@import "animations.scss";
|
||||
@import "fill-gaps.scss";
|
||||
@import "icon-mixin.scss";
|
||||
@import "rounded-corners-mixin.scss";
|
||||
@import "visually-hidden.scss";
|
||||
|
5
scss/utilities/fill-gaps.scss
Normal file
5
scss/utilities/fill-gaps.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
// Fill gaps in pixel art dots
|
||||
// `transform` property conflict when used for nes-icon
|
||||
@mixin fill-gaps() {
|
||||
transform: rotate(0);
|
||||
}
|
@@ -51,7 +51,6 @@
|
||||
height: $size;
|
||||
color: $default-color;
|
||||
box-shadow: unquote($ret);
|
||||
transform: rotate(0.0001deg);
|
||||
|
||||
// firefox only style
|
||||
@supports (-moz-appearance: meterbar) {
|
||||
|
Reference in New Issue
Block a user