From 73a4f38fec0f2cdea46639b8926d216c4964973f Mon Sep 17 00:00:00 2001 From: Dmytro Muzyka <47075277+Mich47@users.noreply.github.com> Date: Thu, 4 May 2023 23:49:31 +0300 Subject: [PATCH] Update PeriodPaginator.styled.jsx --- .../CalendarToolbar/PeriodPaginator/PeriodPaginator.styled.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/CalendarToolbar/PeriodPaginator/PeriodPaginator.styled.jsx b/src/components/CalendarToolbar/PeriodPaginator/PeriodPaginator.styled.jsx index 1d1ee0a..434ab70 100644 --- a/src/components/CalendarToolbar/PeriodPaginator/PeriodPaginator.styled.jsx +++ b/src/components/CalendarToolbar/PeriodPaginator/PeriodPaginator.styled.jsx @@ -91,6 +91,7 @@ const StyledLink = styled(NavLink)` export const ButtonLeft = styled(StyledLink)` border-radius: 8px 0px 0px 8px; + transition: box-shadow var(--animation); &:hover { box-shadow: -4px 2px 10px rgba(136, 165, 191, 1); } @@ -98,6 +99,7 @@ export const ButtonLeft = styled(StyledLink)` export const ButtonRight = styled(StyledLink)` border-radius: 0px 8px 8px 0px; + transition: box-shadow var(--animation); &:hover { box-shadow: 4px 2px 10px rgba(136, 165, 191, 1); }