
+ More skeleton code for the caching system ! Ready for rtc on text based message listening which is where heavy caching comes into play
20 lines
341 B
SCSS
20 lines
341 B
SCSS
@import 'general';
|
|
|
|
::-webkit-scrollbar-corner, ::-webkit-scrollbar {
|
|
background-color: $back-grey;
|
|
width: .8em
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:window-inactive,
|
|
::-webkit-scrollbar-thumb {
|
|
background: $text;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.scrollarea {
|
|
max-height: inherit;
|
|
max-width: inherit;
|
|
overflow: scroll;
|
|
word-break: break-all;
|
|
}
|