p5.js-web-editor/styles/components/_toolbar.scss

23 lines
427 B
SCSS
Raw Normal View History

.toolbar__play-button {
@extend %toolbar-button;
2016-05-12 23:22:54 +02:00
margin-right: #{15 / $base-font-size}rem;
&.playing {
background-color: $light-button-background-hover-color;
& g {
fill: $light-button-hover-color;
}
}
2016-05-12 23:22:54 +02:00
}
.toolbar__stop-button {
@extend %toolbar-button;
}
.toolbar__logo {
margin-right: #{30 / $base-font-size}rem;
}
.toolbar {
padding: #{20 / $base-font-size}rem #{60 / $base-font-size}rem;
display: flex;
}