You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
670 B
SCSS
37 lines
670 B
SCSS
@mixin button-reset {
|
|
background: none;
|
|
color: inherit;
|
|
border: none;
|
|
padding: 0;
|
|
font: inherit;
|
|
cursor: pointer;
|
|
outline: inherit;
|
|
}
|
|
|
|
@mixin color-svg($svg, $color) {
|
|
-webkit-mask: url($svg) no-repeat center;
|
|
-webkit-mask-size: 100%;
|
|
background-color: $color;
|
|
}
|
|
|
|
@mixin header-icon-white($svg) {
|
|
@include color-svg($svg, rgba(255, 255, 255, 0.8));
|
|
&:focus,
|
|
&:hover {
|
|
@include color-svg($svg, white);
|
|
}
|
|
}
|
|
@mixin header-icon-black($svg) {
|
|
@include color-svg($svg, rgba(0, 0, 0, 0.5));
|
|
&:focus,
|
|
&:hover {
|
|
@include color-svg($svg, black);
|
|
}
|
|
}
|
|
|
|
@keyframes highlightedMessageAnimation {
|
|
1% {
|
|
background-color: #00f782;
|
|
}
|
|
}
|