mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
34 lines
453 B
SCSS
34 lines
453 B
SCSS
@import '../../../styles/mixins';
|
|
|
|
.root {
|
|
button {
|
|
border: none;
|
|
|
|
.ant-space {
|
|
.ant-space-item {
|
|
color: var(--theme-unknown-2);
|
|
}
|
|
}
|
|
}
|
|
|
|
.username {
|
|
display: inline;
|
|
|
|
@include screen(desktop) {
|
|
font-weight: 600;
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
|
|
.hideTitleOnMobile {
|
|
@include screen(mobile) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.chatToggle {
|
|
@include screen(tablet) {
|
|
display: none;
|
|
}
|
|
}
|