owncast/web/components/chat/ChatActionMessage/ChatActionMessage.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

17 lines
258 B
SCSS

.chatActionPadding {
padding: 4px 1rem;
}
.chatAction {
padding: 8px;
border-radius: 4px;
text-align: center;
font-size: 12px;
color: var(--theme-color-components-chat-text);
background-color: var(--theme-color-palette-0);
p {
margin: 0;
}
}