From e5ca7c0c2952ecde84401929bcd26d9c442d0d9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20M=C3=B6lle?= Date: Fri, 14 Apr 2023 20:58:00 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9Ecss/skeleton-auto.css=E2=80=9C=20?= =?UTF-8?q?=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/skeleton-auto.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/css/skeleton-auto.css b/css/skeleton-auto.css index bdf90b8..e57a8d7 100644 --- a/css/skeleton-auto.css +++ b/css/skeleton-auto.css @@ -262,9 +262,14 @@ hr { .zoom-box { - transition: transform .2s; /* Animation */ + width: 100px; + -webkit-transition: -webkit-transform 0.2s; + transition: -webkit-transform 0.2s; + transition: transform 0.2s; + transition: transform 0.2s, -webkit-transform 0.2s; } .zoom-box:hover { - transform: scale(1.05); + -webkit-transform: scale(1.05); + transform: scale(1.05); }