37 lines
416 B
SCSS
Executable File
37 lines
416 B
SCSS
Executable File
@import "../../stylesheets/variables/_all";
|
|
|
|
.actionsbar {
|
|
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;
|
|
}
|
|
|
|
.invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.circleGlow span i{
|
|
text-shadow: 0 0 .35rem #FFF;
|
|
}
|