From abb23252a62050b1b51f7f10cbf0ca817a3cbe2e Mon Sep 17 00:00:00 2001 From: Prozilla Date: Mon, 31 Jul 2023 19:36:35 +0200 Subject: [PATCH] Fixed window title overflow --- src/components/windows/Window.module.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/windows/Window.module.css b/src/components/windows/Window.module.css index 8b2635a..3f91500 100644 --- a/src/components/windows/Window.module.css +++ b/src/components/windows/Window.module.css @@ -68,8 +68,12 @@ .Header > p { user-select: none; + width: auto; margin: 0; margin-right: auto; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; } .Header > button {