2023-04-25 10:23:03 +02:00
|
|
|
.chat-channel {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-06-02 17:34:19 +09:00
|
|
|
width: 100%;
|
2023-04-25 10:23:03 +02:00
|
|
|
min-height: 1px;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
grid-area: main;
|
2023-04-28 13:05:00 +02:00
|
|
|
min-width: 250px;
|
2023-05-15 15:53:18 +02:00
|
|
|
@include chat-height;
|
2023-04-25 10:23:03 +02:00
|
|
|
|
|
|
|
.chat-messages-scroll {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow-y: scroll;
|
|
|
|
overscroll-behavior: contain;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
z-index: 1;
|
|
|
|
margin: 0 1px 0 0;
|
|
|
|
will-change: transform;
|
|
|
|
@include chat-scrollbar();
|
2023-07-27 09:57:03 +02:00
|
|
|
min-height: 1px;
|
2023-04-25 10:23:03 +02:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|