
➕ Better scrollarea definition for messages area ➕ Logging http errors in catch statement on auth init
18 lines
266 B
SCSS
18 lines
266 B
SCSS
@import 'general';
|
|
|
|
::-webkit-scrollbar {
|
|
background-color: $back-grey;
|
|
width: .8em
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:window-inactive,
|
|
::-webkit-scrollbar-thumb {
|
|
background: $text;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.scrollarea {
|
|
max-height: 100vh;
|
|
overflow: scroll;
|
|
}
|