owncast/web/components/chat/ChatSystemMessage/ChatSystemMessage.module.scss

38 lines
696 B
SCSS
Raw Normal View History

.chatSystemMessage {
background: var(--theme-color-background-main);
background: linear-gradient(
70deg,
rgb(78, 54, 114) 0%,
rgb(65, 28, 139) 40%,
rgb(83, 67, 130) 80%
);
margin: 5px;
border-radius: 5px;
border-width: 1px;
border-style: solid;
padding: 12px 12px;
max-width: 400px;
.user {
display: flex;
align-items: center;
2022-08-22 02:01:35 +03:00
font-family: var(--theme-text-display-font-family);
font-weight: bold;
color: white;
}
.message {
color: white;
p {
color: white;
margin: unset;
}
mark {
padding-left: 0.35em;
padding-right: 0.35em;
background-color: var(--theme-color-palette-12);
}
}
}