11import styled from '@emotion/styled' ;
22
3- export const ModalWrapper = styled . div `
4- background-color: #fbfbfb;
5- ${ ( { theme } ) => theme . color . black } ;
6- width: 17.5rem;
7- height: 9.375rem;
8- border-radius: 1.25rem;
9- ` ;
10-
11- export const ModalContentWrapper = styled . div `
12- display: flex;
13- height: 6.125rem;
14- justify-content: center;
15- align-items: center;
16- flex-direction: column;
17- ` ;
18-
19- export const ModalContent = styled . span `
20- ${ ( { theme } ) => theme . typo . body2 } ;
21- color: ${ ( { theme } ) => theme . color . black } ;
22- font-weight: 500;
23- ` ;
24-
25- export const ModalButtonWrapper = styled . form `
26- display: flex;
27- justify-content: center;
28- gap: 1rem;
29- ` ;
30-
313export const Button = styled . button `
324 ${ ( { theme } ) => theme . typo . body2 } ;
335 width: 7.25rem;
@@ -48,3 +20,31 @@ export const ModalButton = styled(Button)`
4820 border: 0;
4921 }
5022` ;
23+
24+ export const ModalButtonWrapper = styled . form `
25+ display: flex;
26+ justify-content: center;
27+ gap: 1rem;
28+ ` ;
29+
30+ export const ModalContent = styled . span `
31+ ${ ( { theme } ) => theme . typo . body2 } ;
32+ color: ${ ( { theme } ) => theme . color . black } ;
33+ font-weight: 500;
34+ ` ;
35+
36+ export const ModalContentWrapper = styled . div `
37+ display: flex;
38+ height: 6.125rem;
39+ justify-content: center;
40+ align-items: center;
41+ flex-direction: column;
42+ ` ;
43+
44+ export const ModalWrapper = styled . div `
45+ background-color: #fbfbfb;
46+ ${ ( { theme } ) => theme . color . black } ;
47+ width: 17.5rem;
48+ height: 9.375rem;
49+ border-radius: 1.25rem;
50+ ` ;
0 commit comments