From 5bf53cf500af9ba82602b1454bb35a288875c926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Couto?= Date: Sun, 27 Oct 2024 23:58:48 -0100 Subject: [PATCH] Large Screens Container Fixes --- playgrounds/app/src/app.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/playgrounds/app/src/app.css b/playgrounds/app/src/app.css index 2cea3a1..753dd98 100644 --- a/playgrounds/app/src/app.css +++ b/playgrounds/app/src/app.css @@ -141,10 +141,13 @@ } -/* Full App Height and Letting Footer in the End */ +/* + Full App Height and Letting Footer in the End + Max Width to the Main Container for Larger Screen Sizes +*/ #app { - @apply min-h-screen flex flex-col ; + @apply min-h-screen flex flex-col; } #app main { - @apply w-full flex-1; + @apply w-full flex-1 max-w-screen-2xl mx-auto; } \ No newline at end of file