From e83db9541db5b0bbe7c042b702c122e6f96fbd3e Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 6 Apr 2025 16:59:17 +0100 Subject: [PATCH] Fixed spacing --- src/App.jsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 585d635..4444b6f 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -14,7 +14,7 @@ import ExperienceView from "./views/ExperienceView"; import BlogsView from "./views/BlogsView"; import BlogView from "./views/BlogView"; import CacheReloadView from "./utils/CacheReloadView"; -import { LoadingOutlined } from "@ant-design/icons"; +import { LoadingOutlined } from "@ant-design/icons"; const { Content } = Layout; const { Footer } = Layout; @@ -59,22 +59,19 @@ const App = () => { const fadeVariants = { initial: { - clipPath: "polygon(0 0, 0 0, 0 100%, 0% 100%)", opacity: 0, }, animate: { - clipPath: "polygon(0 0, 100% 0, 100% 100%, 0 100%)", opacity: 1, transition: { - duration: 0.7, + duration: 0.5, ease: "easeInOut", }, }, exit: { - clipPath: "polygon(100% 0, 100% 0, 100% 100%, 100% 100%)", opacity: 0, transition: { - duration: 0.7, + duration: 0.5, ease: "easeInOut", }, },