From 8c929d0dc3c490b1f07573157d910051a14645d6 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Sun, 25 Aug 2024 18:07:51 -0700 Subject: [PATCH] fixed size for different sizes --- .../shared/components/library-header.module.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/renderer/features/shared/components/library-header.module.scss b/src/renderer/features/shared/components/library-header.module.scss index 2f066a9f..6c9f8184 100644 --- a/src/renderer/features/shared/components/library-header.module.scss +++ b/src/renderer/features/shared/components/library-header.module.scss @@ -22,11 +22,11 @@ height: 175px; } - @container (min-width: 600px) { + @container (max-width: 599px) { grid-template-columns: 175px minmax(0, 1fr); h1 { - font-size: 3rem; + height: 40px; } .image { @@ -44,7 +44,7 @@ grid-template-columns: 200px minmax(0, 1fr); h1 { - font-size: 3.5rem; + height: 80px; } .image { @@ -62,7 +62,7 @@ grid-template-columns: 225px minmax(0, 1fr); h1 { - font-size: 4.5rem; + height: 100px; } .image { @@ -80,7 +80,7 @@ grid-template-columns: 250px minmax(0, 1fr); h1 { - font-size: 5rem; + height: 150px; } .image { @@ -96,7 +96,7 @@ @container (min-width: 1500px) { h1 { - font-size: 5.5rem; + height: 150px; } } }