Sengi-Windows-MacOS-Linux/src/app/components/stream/stream.component.scss

50 lines
1.0 KiB
SCSS
Raw Normal View History

@import "variables";
.stream-column {
width: $stream-column-width;
2018-03-17 00:57:14 +01:00
height: calc(100%);
2018-03-16 02:03:23 +01:00
2018-08-03 03:52:24 +02:00
background-color: #0f111a;
margin: 0 0 0 $stream-column-separator;
2018-03-16 02:03:23 +01:00
&__stream-header {
width: calc(100%);
height: 30px;
2018-03-16 04:48:30 +01:00
background-color: black;
border-bottom: 1px solid black;
& h1 {
color: whitesmoke;
font-size: 0.8em;
font-weight: normal;
margin: 0;
padding: 8px 0 0 10px;
}
2018-03-16 04:48:30 +01:00
}
}
2018-03-16 04:48:30 +01:00
.stream-toots {
2018-03-16 04:48:30 +01:00
height: calc(100% - 30px);
2018-08-03 03:52:24 +02:00
width: 320px;
2018-03-16 04:48:30 +01:00
overflow: auto;
}
2018-09-16 19:11:22 +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 {
width: 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);
}
}