From c7342b338b6b639f9224254a1796748c667cc0a1 Mon Sep 17 00:00:00 2001 From: Joshua Randall <josh@joshrandall.net> Date: Wed, 19 Mar 2025 13:54:20 -0400 Subject: [PATCH] fixed comment section sizing --- src/styles/App.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/styles/App.scss b/src/styles/App.scss index f2cabc3..a9aa533 100644 --- a/src/styles/App.scss +++ b/src/styles/App.scss @@ -308,8 +308,8 @@ body { // position:fixed; max-width: 250px; width: 250px; - height: 275px; - max-height: 275px; + height: 20vh; + max-height: 20vh; align-self: flex-end; // max-height: 400px; // bottom:13%; @@ -350,6 +350,8 @@ body { } .comment-section{ align-self:center; + height: 40vh; + max-height: 40vh; } .app-container { width: 90vw; -- GitLab