remove unused style

This commit is contained in:
Thibault Duplessis 2021-01-27 13:06:56 +01:00
parent 30ea09a2bb
commit ab2d7e8b18
2 changed files with 1 additions and 8 deletions

View file

@ -20,6 +20,7 @@
&__combo {
@extend %roboto;
font-size: .8em;
letter-spacing: -1px;
color: $c-font-dim;
@ -44,7 +45,6 @@
$c-bar-base: $c-bg-zebra2;
$c-in-base: $c-brag;
$c-in-flash: mix($c-in-base, white, 75%);
flex: 0 0 2.2em;
background: $c-bar-base;
@ -64,12 +64,6 @@
&__in {
background: $c-in-base;
box-shadow: 0 0 15px $c-in-base;
.storm--mod-move & {
background: $c-in-flash;
box-shadow: 0 0 15px $c-in-flash;
}
transition: all .5s ease-in-out;
.storm--mod-bonus-slow & {

View file

@ -22,7 +22,6 @@ const playModifiers = (ctrl: StormCtrl) => {
return {
'storm--mod-puzzle': !!ctrl.vm.puzzleStartAt && ctrl.vm.puzzleStartAt > now - 90,
'storm--mod-move': ctrl.vm.modifier.moveAt > now - 90,
'storm--mod-malus-quick': !!malus && malus.at > now - 90,
'storm--mod-malus-slow': !!malus && malus.at > now - 950,
'storm--mod-bonus-slow': !!bonus && bonus.at > now - 950
};