mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 06:12:23 +03:00
101174f71e
Virtuoso can't calculate the size of elements that have margins. This causes strange behaviour with scrolling in chat. Co-authored-by: janWilejan <>
16 lines
319 B
SCSS
16 lines
319 B
SCSS
@import 'styles/mixins';
|
|
|
|
.chatModerationNotification {
|
|
background-color: var(--theme-background-primary);
|
|
color: var(--theme-color-components-chat-text);
|
|
padding: 10px;
|
|
font-size: var(--chat-message-text-size);
|
|
|
|
@include flexCenter;
|
|
|
|
.icon {
|
|
margin-right: 10px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|