20 lines
427 B
SCSS
20 lines
427 B
SCSS
@import 'styles/mixins.scss';
|
|
|
|
.chatModerationNotification {
|
|
background-color: var(--theme-background-primary);
|
|
color: var(--theme-color-components-chat-text);
|
|
margin: 5px;
|
|
border-radius: 15px;
|
|
border-color: var(--theme-color-components-text-on-dark);
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
padding: 10px 10px;
|
|
@include flexCenter;
|
|
|
|
.icon {
|
|
margin-right: 10px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|