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

31 lines
452 B

/**
*
*
*
*
*/
@mixin plain-ui__component__bar()
{
.bar {
display: flex;
background-color: $plain-ui__primary-light;
color: white;
padding: 0.8em 1.2em;
&__start {
justify-content: start;
margin-right: 0.75em;
}
&__main {
width: 100%;
}
&__end {
justify-content: end;
margin-left: 0.75em;
}
}
}