22 lines
398 B
SCSS
22 lines
398 B
SCSS
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
.testAudioBtn {
|
|
background-color: transparent;
|
|
color: $color-primary;
|
|
font-weight: normal;
|
|
border: none;
|
|
|
|
i {
|
|
color: $color-primary;
|
|
transition: all .2s ease-in-out;
|
|
}
|
|
|
|
&:hover, &:focus {
|
|
background-color: transparent;
|
|
color: darken($color-primary, 17%);
|
|
i {
|
|
color: darken($color-primary, 17%);
|
|
}
|
|
}
|
|
}
|