1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 17:51:46 +02:00

Revert "feat: coin-icon earned (with animation)"

This reverts commit 029bf0a58f.
This commit is contained in:
Mati
2019-02-09 20:53:56 +01:00
parent 029bf0a58f
commit 74bb4e685e
3 changed files with 0 additions and 26 deletions

View File

@@ -33,7 +33,6 @@ stories.add('icon', () => {
'snes-logo': 'snes-logo',
'snes-jp-logo': 'snes-jp-logo',
'nes-coin': 'nes-coin',
'nes-coin earned': 'nes-coin earned',
}, 'nes-icon twitter');
const selectedSize = radios('size', {
default: '',

View File

@@ -33,9 +33,4 @@
@include pixelize($size, $coin, $coin-colors);
}
&.earned {
animation: rotateIn 1.4s ease-out forwards,
fadeOut 2s ease-out forwards;
}
}

View File

@@ -7,23 +7,3 @@
opacity: 0;
}
}
@keyframes rotateIn {
0% {
opacity: 0;
transform: rotateY(0) translateY(100%);
}
100% {
opacity: 1;
transform: rotateY(1800deg) translateY(0);
}
}
@keyframes fadeOut {
70% {
opacity: 1;
}
100% {
opacity: 0;
}
}