@@ -8,9 +8,9 @@ export const BottomInfoContainer = styled.div<{ $isMobile: boolean; $isTablet: b
8
8
padding: ${ ( { $isMobile } ) => ( $isMobile ? "40px 0" : "60px 0" ) } ;
9
9
` ;
10
10
11
- export const Title = styled . h2 < { $isMobile : boolean ; $isTablet : boolean } > `
12
- width: ${ ( { $isMobile } ) => ( $isMobile ? "98vw" : "none" ) } ;
13
- font-size: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "22px" : $isTablet ? "32px" : "36px" ) } ;
11
+ export const Title = styled . h2 < { $isApp : boolean ; $ isMobile : boolean ; $isTablet : boolean } > `
12
+ width: ${ ( { $isMobile } ) => ( $isMobile ? "98vw" : "none" ) } ;
13
+ font-size: ${ ( { $isApp , $ isMobile, $isTablet } ) => ( $isApp ? "19px" : $isMobile ? "22px" : $isTablet ? "32px" : "36px" ) } ;
14
14
color: #191919;
15
15
font-weight: bold;
16
16
text-align: center;
@@ -57,34 +57,34 @@ export const RequirementItem = styled.div`
57
57
margin-bottom: 20px;
58
58
` ;
59
59
60
- export const RequirementsTitle = styled . h3 < { $isMobile : boolean ; $isTablet : boolean } > `
61
- font-size: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "24px" : $isTablet ? "28px" : "32px" ) } ;
60
+ export const RequirementsTitle = styled . h3 < { $isApp : boolean ; $ isMobile : boolean ; $isTablet : boolean } > `
61
+ font-size: ${ ( { $isApp , $ isMobile, $isTablet } ) => ( $isApp ? "18px" : $isMobile ? "24px" : $isTablet ? "28px" : "32px" ) } ;
62
62
color: #175321;
63
- margin-bottom: 40px;
63
+ margin-bottom: ${ ( { $isApp , $isMobile } ) => ( $isApp ? "10px" : $isMobile ? "20px" : " 40px" ) } ;
64
64
` ;
65
65
66
- export const RequirementTitle = styled . h4 < { $isMobile : boolean } > `
67
- font-size: ${ ( { $isMobile } ) => ( $isMobile ? "18px" : "24px" ) } ;
66
+ export const RequirementTitle = styled . h4 < { $isApp : boolean ; $ isMobile : boolean } > `
67
+ font-size: ${ ( { $isApp , $ isMobile } ) => ( $isApp ? "14px" : $isMobile ? "18px" : "24px" ) } ;
68
68
font-weight: bold;
69
69
` ;
70
70
71
- export const RequirementText = styled . p < { $isMobile : boolean } > `
72
- margin-top: 10px;
73
- font-size: ${ ( { $isMobile } ) => ( $isMobile ? "14px" : "20px" ) } ;
74
- font-weight: 500 ;
71
+ export const RequirementText = styled . p < { $isApp : boolean ; $ isMobile : boolean } > `
72
+ margin-top: ${ ( { $isApp , $isMobile } ) => ( $isApp ? "5px" : $isMobile ? "7px" : " 10px" ) } ;
73
+ font-size: ${ ( { $isApp , $ isMobile } ) => ( $isApp ? "12px" : $isMobile ? "14px" : "20px" ) } ;
74
+ font-weight: 300 ;
75
75
` ;
76
76
77
- export const ButtonContainer = styled . div `
77
+ export const ButtonContainer = styled . div < { $isApp : boolean ; $isMobile : boolean } > `
78
78
display: flex;
79
79
justify-content: flex-end;
80
- margin-top: 40px;
80
+ margin-top: ${ ( { $isApp , $isMobile } ) => ( $isApp ? "10px" : $isMobile ? "20px" : " 40px" ) } ;
81
81
` ;
82
82
83
- export const ApplyButton = styled . button < { $isMobile : boolean } > `
84
- width: ${ ( { $isMobile } ) => ( $isMobile ? "180px" : "240px" ) } ;
83
+ export const ApplyButton = styled . button < { $isApp : boolean ; $ isMobile : boolean } > `
84
+ width: ${ ( { $isApp , $ isMobile } ) => ( $isApp ? "110px" : $isMobile ? "180px" : "240px" ) } ;
85
85
background-color: #49aa59;
86
86
color: #ffffff;
87
- font-size: ${ ( { $isMobile } ) => ( $isMobile ? "18px" : "20px" ) } ;
87
+ font-size: ${ ( { $isApp , $ isMobile } ) => ( $isApp ? "14px" : $isMobile ? "18px" : "20px" ) } ;
88
88
padding: 12px 24px;
89
89
border: none;
90
90
border-radius: 10px;
0 commit comments