diff --git a/apps/duri/src/components/home/ShopVertical.tsx b/apps/duri/src/components/home/ShopVertical.tsx index 1c62f83..fa367f9 100644 --- a/apps/duri/src/components/home/ShopVertical.tsx +++ b/apps/duri/src/components/home/ShopVertical.tsx @@ -58,63 +58,35 @@ export const ShopVertical = ({ gap={3} margin="0 0 0 6px" > - { - - {shop.shopTag1} - - } - - {shop.shopTag2} - + + {shop.shopTag1 && ( + + {shop.shopTag1} + + )} + {shop.shopTag2 && ( + + {shop.shopTag2} + + )} + - - {shop.address} - - - - {shop.shopTag1 && ( - - {shop.shopTag1} - - )} - {shop.shopTag2 && ( - - {shop.shopTag2} - - )} - ))} @@ -138,4 +110,4 @@ const FitFlex = styled(HeightFitFlex)` const TagWrapper = styled(HeightFitFlex)` min-height: 45px; -`; \ No newline at end of file +`; diff --git a/packages/ui/src/styles/GlobalStyles.ts b/packages/ui/src/styles/GlobalStyles.ts index 9a7dfaf..1a17312 100644 --- a/packages/ui/src/styles/GlobalStyles.ts +++ b/packages/ui/src/styles/GlobalStyles.ts @@ -58,7 +58,4 @@ export const globalStyle = css` border: none !important; width: 100%; } - .css-1f7sphi { - z-index: -1 !important; - } `;