From 82c6a1288308bea4bdd6653eb72bcdc621631541 Mon Sep 17 00:00:00 2001 From: Hamzat Victor Date: Mon, 14 Oct 2024 12:15:46 +0100 Subject: [PATCH] chore: remove unsused styles --- frontend/app/globals.css | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/frontend/app/globals.css b/frontend/app/globals.css index 9392370..762a30d 100644 --- a/frontend/app/globals.css +++ b/frontend/app/globals.css @@ -152,24 +152,3 @@ .tab-scroll::-webkit-scrollbar { display: none; } - -.fade-r { - --mask-gradient: linear-gradient( - to right, - white 0%, - white calc(100% - var(--fade-size)), - transparent - ); - -webkit-mask-image: var(--mask-gradient); - mask-image: var(--mask-gradient); -} -.fade-l { - --mask-gradient: linear-gradient( - to left, - white var(--fade-size), - white 100%, - transparent - ); - -webkit-mask-image: var(--mask-gradient); - mask-image: var(--mask-gradient); -}