p5.js-web-editor/client/styles/components/_preview-nav.scss

15 lines
338 B
SCSS
Raw Normal View History

.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');
}
}
}
}