From 70a0ac96a4c985d8efdead9c5ef5d707167ebc72 Mon Sep 17 00:00:00 2001 From: typescreep Date: Fri, 6 Jun 2025 13:47:37 +0300 Subject: [PATCH] wip --- .../molecules/MarketPlace/atoms/AddCard/styled.ts | 6 +++--- .../MarketPlace/molecules/MarketplaceCard/styled.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/molecules/MarketPlace/atoms/AddCard/styled.ts b/src/components/molecules/MarketPlace/atoms/AddCard/styled.ts index 2fcfad7..1e4589c 100644 --- a/src/components/molecules/MarketPlace/atoms/AddCard/styled.ts +++ b/src/components/molecules/MarketPlace/atoms/AddCard/styled.ts @@ -8,9 +8,9 @@ const CustomCard = styled(Card)` cursor: pointer; width: 238px; box-shadow: - 0px 6px 16px 0px #00000014, - 0px 3px 6px -4px #0000001f, - 0px 9px 28px 8px #0000000d; + 0 6px 16px 0 #00000014, + 0 3px 6px -4px #0000001f, + 0 9px 28px 8px #0000000d; .ant-card-body { display: flex; diff --git a/src/components/molecules/MarketPlace/molecules/MarketplaceCard/styled.ts b/src/components/molecules/MarketPlace/molecules/MarketplaceCard/styled.ts index ce73943..04b584d 100644 --- a/src/components/molecules/MarketPlace/molecules/MarketplaceCard/styled.ts +++ b/src/components/molecules/MarketPlace/molecules/MarketplaceCard/styled.ts @@ -12,9 +12,9 @@ const CustomCard = styled(Card)` overflow-x: auto; cursor: ${({ $isDisabled }) => ($isDisabled ? 'not-allowed' : 'pointer')}; box-shadow: - 0px 6px 16px 0px #00000014, - 0px 3px 6px -4px #0000001f, - 0px 9px 28px 8px #0000000d; + 0 6px 16px 0 #00000014, + 0 3px 6px -4px #0000001f, + 0 9px 28px 8px #0000000d; &:hover { border-color: ${({ $hoverColor, $isDisabled }) => !$isDisabled && $hoverColor};