You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
457 B
33 lines
457 B
@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; |
|
} |
|
}
|
|
|