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

41 lines
886 B
SCSS
Raw Normal View History

@import "variables";
@import "commons";
.stream-column {
position: relative;
2018-09-19 07:03:07 +02:00
width: $stream-column-width;
height: calc(100%);
2018-10-14 00:23:09 +02:00
background-color: $column-color;
2018-09-19 07:03:07 +02:00
margin: 0 0 0 $stream-column-separator;
&__stream-header {
width: calc(100%);
height: 30px;
background-color: $column-header-background-color;
2018-09-19 07:03:07 +02:00
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
.stream-toots {
2018-09-19 07:03:07 +02:00
height: calc(100% - 30px);
width: 320px;
overflow: auto;
&__status:not(:last-child) {
border: solid #06070b;
border-width: 0 0 1px 0;
}
2018-03-16 04:48:30 +01:00
}
2018-09-16 19:11:22 +02:00
.stream-overlay {
position: absolute;
z-index: 50;
width: $stream-column-width;
height: calc(100%);
2018-11-08 05:31:47 +01:00
}