From f424bfa9a0dc439cf505033e96c48f9816447e4f Mon Sep 17 00:00:00 2001 From: Peter Beluzsar Date: Thu, 5 Feb 2026 22:23:36 +0100 Subject: [PATCH] css --- kiszolgalo/src/main/resources/style.css | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/kiszolgalo/src/main/resources/style.css b/kiszolgalo/src/main/resources/style.css index bcc0d81..d5d656d 100644 --- a/kiszolgalo/src/main/resources/style.css +++ b/kiszolgalo/src/main/resources/style.css @@ -32,7 +32,7 @@ body { flex-direction: column; height: 80vh; overflow-y: scroll; - flex-grow: 8 + flex-grow: 8; background: red; } @@ -121,7 +121,13 @@ body { background: #323232; display: flex; margin: auto; - width: 80%; + @media (max-width: 600px) { + width: 100%; + } + @media (min-width: 600px) { + width: 80%; + } + padding: 10px 10px; border-radius: 25px; } @@ -170,8 +176,6 @@ footer { border-radius: 5px; } - - .navbar img { height: 32px; margin: auto 5px; @@ -184,4 +188,4 @@ footer { .navbar a.icon { display: none; } -} \ No newline at end of file +