From d735dc3e8ada03f3a066cb8936c361fe5d93fe0c Mon Sep 17 00:00:00 2001 From: David Padilla Date: Sun, 1 Oct 2023 23:47:13 -0500 Subject: [PATCH] Use pixels instead of em to position brand --- src/style/styles.less | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/style/styles.less b/src/style/styles.less index b9144ca38..382d22a83 100644 --- a/src/style/styles.less +++ b/src/style/styles.less @@ -2052,7 +2052,7 @@ input { opacity: 1; z-index: 1; position: relative; - top: 12em; + top: 105px; transition: opacity 300ms cubic-bezier(.39,.58,.57,1);; div { @@ -2070,16 +2070,17 @@ input { } } -@media only screen and (max-width: 1095px) { +@media only screen and (max-width: 744px) { #brandlogo div { - width: 300px; - background-size: 300px; + width: 400px; + background-size: 400px; } } -@media only screen and (max-width: 759px) { - #brandlogo { - top: 17em; +@media only screen and (max-width: 597px) { + #brandlogo div { + width: 300px; + background-size: 300px; } }