mirror of
https://github.com/owncast/owncast.git
synced 2024-12-21 16:54:46 +03:00
29041e6d76
* don't display chat button or modal if isModal is true. dont display the show/hide chat option in the userdropedown for tablet sizes either. tweak chat button styles and make chat button bg the same as the chat component bg color. * only show chat button if online * fix(chat): chat should be available through 5min buffer period. Fixes #3044 * fix(test): update mobile test --------- Co-authored-by: Gabe Kangas <gabek@real-ity.com>
33 lines
457 B
SCSS
33 lines
457 B
SCSS
@import '../../../styles/mixins.scss';
|
|
|
|
.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;
|
|
}
|
|
}
|