From 22d8a08420d1c063ca3e4ced60503a7f20c77bae Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Thu, 9 Feb 2023 11:52:27 -0600 Subject: [PATCH] Fix mismatch in peeking window heights --- assets/styles/mix-twbs.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/assets/styles/mix-twbs.scss b/assets/styles/mix-twbs.scss index 6526812..250cd8d 100644 --- a/assets/styles/mix-twbs.scss +++ b/assets/styles/mix-twbs.scss @@ -5,11 +5,13 @@ $web-font-path: "/fonts/nunito-sans/index.css"; @import "bootstrap/bootstrap"; @import "bootswatch/lux/bootswatch"; +$peek-height: 25rem; + .blurred-container { position: relative; width: 100%; min-height: 35vh; - height: 350px; + height: $peek-height; top: 0; left: 0; } @@ -39,7 +41,7 @@ $web-font-path: "/fonts/nunito-sans/index.css"; position: fixed; width: 100%; min-height: 35vh; - height: 72ex; + height: $peek-height; background-repeat: no-repeat; background-size: cover; background-position: center center;