Sengi-Windows-MacOS-Linux/src/app/pages/streams-main-display/streams-main-display.compon...

35 lines
916 B
SCSS
Raw Normal View History

@import "variables";
.main-display {
width: calc(100%);
height: calc(100%);
overflow-x: auto;
overflow-y: hidden;
&__stream-column {
height: calc(100%);
width: $stream-column-width;
display: inline-block;
overflow-x: hidden;
overflow-y: hidden;
white-space: normal;
margin: 0 0 0 $stream-column-separator;
}
2018-08-03 05:00:23 +02:00
}
.flexcroll {
scrollbar-face-color: #08090d;
scrollbar-shadow-color: #08090d;
scrollbar-highlight-color: #08090d;
scrollbar-3dlight-color: #08090d;
scrollbar-darkshadow-color: #08090d;
scrollbar-track-color: #08090d;
scrollbar-arrow-color: #08090d;
&::-webkit-scrollbar {
height: 7px;
}
&::-webkit-scrollbar-thumb {
-webkit-border-radius: 0px;
border-radius: 0px;
background: #08090d;
-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}
2018-08-03 05:00:23 +02:00
}