You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plain-ui/src/scss/components/_bar.scss

43 lines
660 B

3 years ago
/**
*
*
*
*
*/
@mixin plain-ui__component__bar()
{
.bar {
display: flex;
3 years ago
min-height: 2.8em;
3 years ago
background-color: $plain-ui__primary-light;
color: white;
3 years ago
.icon {
font-size: 1.5rem;
}
3 years ago
&__start {
justify-content: start;
}
&__main {
3 years ago
flex-grow: 1;
3 years ago
}
&__end {
3 years ago
justify-content: end;
3 years ago
}
3 years ago
&__start, &__main, &__end {
3 years ago
display: flex;
3 years ago
align-self: center;
margin-left: 0.75em;
&:last-child {
margin-right: 0.75em;
}
}
3 years ago
}
}