From 145f7fdc2eb83c8f0efb6f3ec21404093301941f Mon Sep 17 00:00:00 2001 From: Irene Sheen Date: Fri, 12 Dec 2025 11:44:20 +0530 Subject: [PATCH] Fix header on small screens --- notes/static/notes/stylesheets/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/notes/static/notes/stylesheets/style.css b/notes/static/notes/stylesheets/style.css index f98e0a3..d6359b9 100644 --- a/notes/static/notes/stylesheets/style.css +++ b/notes/static/notes/stylesheets/style.css @@ -21,17 +21,25 @@ header > .home { text-decoration: none; color: #000; margin-left: 20px; + @media (max-width: 500px) { + font-size: 2em; + } } header img { height: 40px; margin: 20px; + @media (max-width: 500px) { + height: 25px; + margin: 10px 15px; + } } .logout { padding: 0; background: transparent; border: none; + min-width: unset; } main {