From cbaf66e1af8d08198b3026860225895c49b7d8ec Mon Sep 17 00:00:00 2001 From: Qluxzz Date: Sun, 27 Oct 2024 16:36:07 +0100 Subject: [PATCH] Set fixed height of card, safari doesn't like aspect-ratio --- style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index bf8ba57..e6f5e23 100644 --- a/style.css +++ b/style.css @@ -391,7 +391,10 @@ button { .card { aspect-ratio: 2.25 / 3.5; - width: 100px; + min-width: 100px; + max-width: 100px; + max-height: 155px; + min-height: 155px; position: relative; perspective: 1000px; }