51 lines
573 B
SCSS
Executable File
51 lines
573 B
SCSS
Executable File
@import "../../stylesheets/variables/_all";
|
|
|
|
.actionsbar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.left,
|
|
.right,
|
|
.relative,
|
|
.absolute,
|
|
.hidden {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
> * {
|
|
margin: 0 $line-height-computed;
|
|
}
|
|
}
|
|
|
|
.left,
|
|
.right,
|
|
.hidden {
|
|
flex: 0;
|
|
}
|
|
|
|
.relative,
|
|
.absolute {
|
|
flex: 1;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.relative {
|
|
position: relative
|
|
}
|
|
|
|
.absolute {
|
|
position: absolute;
|
|
}
|
|
|
|
.hidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.circleGlow > :first-child{
|
|
box-shadow: 0 0 .15rem #FFF !important;
|
|
}
|