From b4c0799676f358912e1e41922cac9624ddb0b235 Mon Sep 17 00:00:00 2001 From: Kiyomichi Kosaka Date: Sun, 15 Jun 2025 14:06:30 +0200 Subject: [PATCH] Increase clock size in iPhone landscape --- style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/style.css b/style.css index d2188dc..f9eade1 100644 --- a/style.css +++ b/style.css @@ -360,6 +360,14 @@ } } + @media only screen + and (max-height: 430px) /* iPhone landscape heights around 390px */ + and (orientation: landscape) { + .analog-clock-container { + --clock-size: 70vmin; /* roughly 1.7x larger than default */ + } + } + .eonstrip-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); transform: translateX(0);