From 97cf84050204a670f53b88fbe273fe62e60f23e7 Mon Sep 17 00:00:00 2001 From: LynithDev <61880709+LynithDev@users.noreply.github.com> Date: Thu, 28 Dec 2023 14:48:19 +0100 Subject: Remove page transitions --- apps/website/src/styles/global.css | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'apps/website/src/styles') diff --git a/apps/website/src/styles/global.css b/apps/website/src/styles/global.css index a240f83..f98d574 100644 --- a/apps/website/src/styles/global.css +++ b/apps/website/src/styles/global.css @@ -32,27 +32,6 @@ } } -/* Transition */ -@keyframes fadeIn { - from { - opacity: 0; - } - - to { - opacity: 1; - } -} - -@keyframes fadeOut { - from { - opacity: 1; - } - - to { - opacity: 0; - } -} - /* Codeblocks */ .astro-code { padding: 10px; -- cgit