bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/styles.scss

39 lines
451 B
SCSS
Raw Normal View History

2016-07-28 05:50:35 +08:00
@import "../../stylesheets/variables/_all";
2016-05-21 00:17:21 +08:00
.actionsbar {
2016-05-21 00:17:21 +08:00
display: flex;
flex-direction: row;
}
.left,
.right,
2017-03-15 00:32:50 +08:00
.center,
.hidden {
2016-05-21 00:17:21 +08:00
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
> * {
margin: 0 $line-height-computed;
}
}
.left,
2017-03-15 00:32:50 +08:00
.right,
.hidden {
2016-05-21 00:17:21 +08:00
flex: 0;
}
.center {
flex: 1;
}
2017-03-15 00:32:50 +08:00
.hidden {
visibility: hidden;
}
.circleGlow > :first-child{
box-shadow: 0 0 .15rem #FFF !important;
}