Commit 82fd79f0 authored by Mike Grabowski's avatar Mike Grabowski Committed by GitHub

chore: reduce border by 1px (#5419)

parent d24c62ec
...@@ -11,15 +11,15 @@ import { ThemedText } from 'theme/components/text' ...@@ -11,15 +11,15 @@ import { ThemedText } from 'theme/components/text'
const CarouselCardBorder = styled.div` const CarouselCardBorder = styled.div`
width: 100%; width: 100%;
position: relative; position: relative;
border-radius: 22px; border-radius: 21px;
cursor: pointer; cursor: pointer;
border: 2px solid transparent; border: 1px solid transparent;
transition-property: border-color; transition-property: border-color;
transition-duration: ${({ theme }) => theme.transition.duration.fast}; transition-duration: ${({ theme }) => theme.transition.duration.fast};
transition-timing-function: ${({ theme }) => theme.transition.timing.inOut}; transition-timing-function: ${({ theme }) => theme.transition.timing.inOut};
:hover { :hover {
border: 2px solid ${({ theme }) => theme.backgroundOutline}; border: 1px solid ${({ theme }) => theme.backgroundOutline};
} }
::after { ::after {
...@@ -30,7 +30,7 @@ const CarouselCardBorder = styled.div` ...@@ -30,7 +30,7 @@ const CarouselCardBorder = styled.div`
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
border-radius: 22px; border-radius: 21px;
z-index: -1; z-index: -1;
box-shadow: ${({ theme }) => theme.deepShadow}; box-shadow: ${({ theme }) => theme.deepShadow};
transition-property: opacity; transition-property: opacity;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment