react-toolbox/components/snackbar/style.scss

18 lines
353 B
SCSS
Raw Normal View History

2015-10-20 06:25:35 +03:00
@import "../variables";
@import "../mixins";
$snackbar-background-color: $color-overlay;
$snackbar-color: unquote("rgb(#{$color-white})");
.root {
padding: $offset;
margin-top: $offset;
background-color: $snackbar-background-color;
color: $snackbar-color;
border-radius: $border-radius;
display: flex;
}
.icon {
margin-right: $offset;
}