From 424080bc1cedcac1d9fdc89fd4631bcd059d283f Mon Sep 17 00:00:00 2001 From: Aditya-Chandrn Date: Mon, 2 Jan 2023 19:05:18 +0530 Subject: [PATCH] changes logo size for width less than 720 px --- static/styles/styles.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/static/styles/styles.css b/static/styles/styles.css index 00c3d6e..ae3fb06 100755 --- a/static/styles/styles.css +++ b/static/styles/styles.css @@ -12163,11 +12163,22 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI } /* for smaller screen make sure the home screen logo does not overflow */ -@media only screen and (max-width: 377px) { +@media only screen and (max-width: 720px) { .home-screen-logo { height: 6vh !important; position: relative; } + .red-logo img{ + height: 6vh !important; + } + + .red-logo{ + top: -8%; + } + + .blue-logo img{ + height: 6vh !important; + } }