From a2a659be9b6fa4717fde271396fb8ff01e452f63 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 16 May 2023 15:05:42 +0200 Subject: Resize brand icon on small screens --- assets/sass/_custom.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'assets') diff --git a/assets/sass/_custom.scss b/assets/sass/_custom.scss index e25d0a8..1e0b4c6 100644 --- a/assets/sass/_custom.scss +++ b/assets/sass/_custom.scss @@ -7,7 +7,11 @@ } .nav_brand picture, .nav_brand img { - max-width: 22rem; + max-width: 15rem; + + @media screen and (min-width: 557px) { + max-width: 22rem; + } } a { -- cgit v1.3-5-g9baa