From 51fc960525244ac3c2f0d689c9af56b3a921a3ec Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Wed, 30 Aug 2023 17:26:46 -0400 Subject: [PATCH] ms --- packages/astro/components/viewtransitions.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/astro/components/viewtransitions.css b/packages/astro/components/viewtransitions.css index ea62038e7..25fabe048 100644 --- a/packages/astro/components/viewtransitions.css +++ b/packages/astro/components/viewtransitions.css @@ -46,14 +46,14 @@ @layer astro { ::view-transition-old(root) { animation-name: astroFadeOut; - animation-duration: 180; + animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; } ::view-transition-new(root) { animation-name: astroFadeIn; - animation-duration: 180; + animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; } @@ -61,14 +61,14 @@ :root[data-astro-transition-fallback="old"]:not([data-astro-transition-scope]) { animation-name: astroFadeOut; - animation-duration: 180; + animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; } :root[data-astro-transition-fallback="new"]:not([data-astro-transition-scope]) { animation-name: astroFadeIn; - animation-duration: 180; + animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; }