30 lines
361 B
SCSS
Executable File
30 lines
361 B
SCSS
Executable File
@import "../../stylesheets/variables/_all";
|
|
|
|
.actionsbar {
|
|
padding: $line-height-computed / 2;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.left,
|
|
.right,
|
|
.center {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
> * {
|
|
margin: 0 $line-height-computed;
|
|
}
|
|
}
|
|
|
|
.left,
|
|
.right {
|
|
flex: 0;
|
|
}
|
|
|
|
.center {
|
|
flex: 1;
|
|
}
|