FIX: correctly homogenizes panels min width (#21294)

`.chat-channel` had `300px` min width, when `.chat-drawer` was `250px`, resulting in overflowing channel when in drawer. This commits ensures the limits are always set at `250px`.
This commit is contained in:
Joffrey JAFFEUX 2023-04-28 13:05:00 +02:00 committed by GitHub
parent e4029bfab8
commit 1403064835
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import { action } from "@ember/object";
import { htmlSafe } from "@ember/template";
import { tracked } from "@glimmer/tracking";
const MIN_CHAT_CHANNEL_WIDTH = 300;
const MIN_CHAT_CHANNEL_WIDTH = 250;
export default class ChatSidePanel extends Component {
@service chatStateManager;

View File

@ -6,7 +6,7 @@
overflow: hidden;
grid-area: main;
width: 100%;
min-width: 300px;
min-width: 250px;
.open-drawer-btn {
color: var(--primary-low-mid);