Skip to content

Commit

Permalink
Fix : 코드컨벤션 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
jymaeng1234 committed Oct 2, 2024
1 parent df3cc24 commit 57602ed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/MapModal/styles.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { styled } from 'styled-components';
import theme from '@/styles/theme';

export const MapModal = styled.div`
position: fixed;
Expand Down Expand Up @@ -36,7 +35,7 @@ export const ModalHeader = styled.div`
&::after {
content: '';
border: 1px solid ${props => props.theme.colors.gray};
border: 1px solid ${({ theme }) => theme.colors.gray};
position: absolute;
bottom: -10px;
left: 0;
Expand All @@ -50,7 +49,7 @@ export const ModalCloseBtn = styled.button`
background-color: transparent;
font-size: 20px;
&:hover {
color: ${props => props.theme.colors.gray};
color: ${({ theme }) => theme.colors.gray};
}
`;

Expand Down

0 comments on commit 57602ed

Please sign in to comment.