owncast/web/components/chat/ChatModeratorNotification/ChatModeratorNotification.module.scss
janWilejan 101174f71e
replace margins with padding in the chat container (#3165)
Virtuoso can't calculate the size of elements that have margins. This causes
strange behaviour with scrolling in chat.

Co-authored-by: janWilejan <>
2023-07-11 13:07:58 -07:00

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;
}
}