mirror of
https://github.com/discourse/discourse.git
synced 2025-01-17 00:13:15 +08:00
b96a9b9896
This will have the following advantages: - removes a very annoying bug which was making text selection super hard on iOS - removes the flashing of header when transitioning from disable to enable body scroll lock
29 lines
570 B
SCSS
29 lines
570 B
SCSS
.chat-channel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
min-height: 1px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
grid-area: main;
|
|
min-width: 250px;
|
|
@include chat-height(var(--chat-header-offset, 0px));
|
|
|
|
.join-channel-btn.in-float {
|
|
position: absolute;
|
|
transform: translateX(-50%);
|
|
left: 50%;
|
|
top: 10px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.all-loaded-message {
|
|
text-align: center;
|
|
color: var(--primary-medium);
|
|
font-size: var(--font-down-1);
|
|
padding: 0.5em 0.25em 0.25em;
|
|
touch-action: none;
|
|
height: 100%;
|
|
}
|
|
}
|