28 lines
567 B
CSS
28 lines
567 B
CSS
/* Some general browser helpers */
|
|
/* max height is 2em */
|
|
.controlBar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
height: 100%;
|
|
align-items: center;
|
|
/* tmp fix for ultra small devices */
|
|
overflow-y: visible;
|
|
}
|
|
.controlBar .divider {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
border-left: 2px solid #393838;
|
|
height: calc(100% - 3px);
|
|
margin: 3px;
|
|
}
|
|
.controlBar .spacer {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
/*# sourceMappingURL=index.css.map */
|