15 lines
338 B
SCSS
15 lines
338 B
SCSS
|
.preview-nav__editor-svg {
|
||
|
& svg {
|
||
|
width: #{22 / $base-font-size}rem;
|
||
|
height: #{22 / $base-font-size}rem;
|
||
|
@include themify() {
|
||
|
fill: getThemifyVariable('button-nav-inactive-color');
|
||
|
}
|
||
|
&:hover {
|
||
|
@include themify() {
|
||
|
fill: getThemifyVariable('button-background-hover-color');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|