From 34b2fdf32df07fce5cb873cc829f33ca2b903a82 Mon Sep 17 00:00:00 2001 From: Ruben Taelman Date: Fri, 18 Oct 2024 13:36:00 +0200 Subject: [PATCH] Fix index on other mobiles being too wide --- styles/main.scss | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/styles/main.scss b/styles/main.scss index c7cd2828..bd37ddbc 100644 --- a/styles/main.scss +++ b/styles/main.scss @@ -267,7 +267,7 @@ pre { .sponsors-member { img { - height: 100px; + height: 120px; margin: 25px; } } @@ -696,3 +696,15 @@ main .date { width: 200px; } } + +@media (max-width: 600px) { + pre { + width: 200px; + } + .sponsors-member { + img { + width: 90%; + height: auto !important; + } + } +}