better column display for scrolling capabilities
This commit is contained in:
parent
afe9578deb
commit
4639f0076f
|
@ -1,8 +1,8 @@
|
|||
<div id="mam-stream-column">
|
||||
<div id="mam-stream-header">
|
||||
<div class="stream-column">
|
||||
<div class="stream-column__stream-header">
|
||||
<a href title="return to top" (click)="goToTop()"><h1>{{ stream.streamName.toUpperCase() }}</h1></a>
|
||||
</div>
|
||||
<div id="mam-stream-toots" data-simplebar>
|
||||
<div class="stream-toots" data-simplebar>
|
||||
<div *ngFor="let toot of toots">
|
||||
<app-toot [toot]="toot"></app-toot>
|
||||
</div>
|
||||
|
|
|
@ -1,34 +1,31 @@
|
|||
#mam-stream-column {
|
||||
width: 320px; /*320*/
|
||||
@import "variables";
|
||||
.stream-column {
|
||||
width: $stream-column-width;
|
||||
height: calc(100%);
|
||||
|
||||
background-color: #090b10;
|
||||
background-color: #0f111a;
|
||||
margin: 0 0 0 $stream-column-separator;
|
||||
|
||||
outline: 1px dotted greenyellow;
|
||||
}
|
||||
|
||||
#mam-stream-header {
|
||||
width: calc(100%);
|
||||
height: 30px;
|
||||
|
||||
background-color: black;
|
||||
&__stream-header {
|
||||
width: calc(100%);
|
||||
height: 30px;
|
||||
|
||||
border-bottom: 1px solid black;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#mam-stream-header h1 {
|
||||
color: whitesmoke;
|
||||
font-size: 0.8em;
|
||||
font-weight: normal;
|
||||
margin: 0;
|
||||
padding: 8px 0 0 10px;
|
||||
}
|
||||
|
||||
|
||||
#mam-stream-toots {
|
||||
.stream-toots {
|
||||
height: calc(100% - 30px);
|
||||
width: 320px;
|
||||
overflow: auto;
|
||||
|
||||
}
|
||||
|
|
|
@ -6,12 +6,13 @@
|
|||
overflow-y: hidden;
|
||||
&__stream-column {
|
||||
height: calc(100%);
|
||||
width: $stream-column-width;
|
||||
width: $stream-column-width + $stream-column-separator;
|
||||
display: inline-block;
|
||||
overflow-x: hidden;
|
||||
overflow-y: hidden;
|
||||
white-space: normal;
|
||||
margin: 0 0 0 $stream-column-separator;
|
||||
// margin: 0 0 0 $stream-column-separator;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue