From 8cfe80e3b32e7fafa431c61464c13a621c73ae22 Mon Sep 17 00:00:00 2001 From: waifu Date: Sat, 27 Apr 2024 00:23:15 -0300 Subject: [PATCH] do not restrict the menu, add title flex --- home/styles.css | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/home/styles.css b/home/styles.css index 8a11a2d..0675f0a 100644 --- a/home/styles.css +++ b/home/styles.css @@ -1,19 +1,12 @@ body, html { - height: 100%; - margin: 0; - overflow: hidden; /* Prevents scrollbar from appearing */ - } -body { + max-height: 100vh; + max-width: 100%; display: flex; justify-content: center; align-items: center; - flex-direction: column; - } - + } #menu { - width: 800px; - height: 400px; @@ -27,7 +20,12 @@ body { transition: transform 0.3s, scale 0.3s; } - +#title{ + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; +} p{ color: dodgerblue; align-self: center;