From 524c640a5622c514760d82673e4332f2f67f867a Mon Sep 17 00:00:00 2001 From: raghu Date: Wed, 26 Feb 2025 13:42:30 -0500 Subject: [PATCH] fix scroll effect b/c header is sticky now --- src/app/app.component.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/app.component.scss b/src/app/app.component.scss index 27ebd14..06dcb4b 100644 --- a/src/app/app.component.scss +++ b/src/app/app.component.scss @@ -1,11 +1,11 @@ :host { display: flex; flex-direction: column; - min-height: 100vh; + height: 100vh; } main { flex: 1; - padding: 0 1rem; - overflow: auto; + overflow-y: auto; + margin-top: 3.5rem; }