From 42b0883997f9dba44551021554f038c3a5dd4594 Mon Sep 17 00:00:00 2001 From: Prozilla Date: Mon, 24 Jul 2023 22:39:39 +0200 Subject: [PATCH] Made windows resizable --- 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 c5ecff2..f172a87 100644 --- a/src/components/windows/Window.module.css +++ b/src/components/windows/Window.module.css @@ -7,7 +7,11 @@ position: absolute; display: flex; flex-direction: column; + min-width: 200px; + min-height: 50px; background-color: var(--background-color-c); + resize: both; + overflow: hidden; /* animation: pop-in 200ms ease-in-out; */ }