@@ -136,12 +136,12 @@ export const AppApplyButton = styled.div`
136
136
` ;
137
137
138
138
export const Container = styled . div < { $isMobile : boolean ; $isTablet : boolean } > `
139
- height: ${ ( { $isMobile , $isTablet } ) => ( $isMobile ? "100vh" : $isTablet ? "100vh" : "90vh" ) } ;
139
+ width: 100% ;
140
140
display: flex;
141
141
flex-direction: column;
142
142
align-items: flex-start;
143
143
justify-content: center;
144
- height: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "80vh" : $isTablet ? "100vh" : "90vh " ) } ;
144
+ height: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "80vh" : $isTablet ? "100vh" : "100vh " ) } ;
145
145
background: linear-gradient(90deg, #102C19, #194326);
146
146
padding: ${ ( { $isMobile } ) => ( $isMobile ? "0px" : "50px" ) } ;
147
147
color: white;
@@ -150,10 +150,9 @@ export const Container = styled.div<{ $isMobile: boolean; $isTablet: boolean }>`
150
150
export const Logo = styled . div < { $isMobile : boolean ; $isTablet : boolean } > `
151
151
display: flex;
152
152
align-items: center;
153
- font-size: 5vw ;
153
+ font-size: ${ ( { $isMobile , $isTablet } ) => ( $isMobile ? "50px" : $isTablet ? "60px" : "75px" ) } ;
154
154
font-weight: 800;
155
- margin-bottom: 20px;
156
- margin-left: 50px;
155
+ margin-left: ${ ( { $isMobile, $isTablet } ) => ( $isMobile || $isTablet ? "20px" : "0" ) } ;
157
156
img {
158
157
width: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "100px" : $isTablet ? "140px" : "180px" ) } ;
159
158
height: auto;
@@ -230,25 +229,25 @@ export const Apply = styled.div`
230
229
` ;
231
230
232
231
export const ApplyButton = styled . button < { $isMobile : boolean ; $isTablet : boolean } > `
233
- background-color: #4CAF50 ;
232
+ background-color:rgb(74, 151, 76) ;
234
233
color: white;
235
234
border: none;
236
- padding: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "10px 50px " : $isTablet ? "12px 65px " : "15px 80px " ) } ;
235
+ padding: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "8px 40px " : $isTablet ? "10px 55px " : "12px 70px " ) } ;
237
236
border-radius: 10px;
238
- font-size: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "18px " : $isTablet ? "22px " : "24px " ) } ;
239
- margin-top: 20px ;
237
+ font-size: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "16px " : $isTablet ? "20px " : "22px " ) } ;
238
+ margin-top: 100px ;
240
239
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
241
240
242
241
&:hover {
243
242
background-color: #388E3C;
244
243
}
245
244
` ;
246
245
247
- export const ApplyDescription = styled . div < { $isMobile : boolean } > `
248
- font-size: ${ ( { $isMobile } ) => ( $isMobile ? "12px " : "16px ") } ;
246
+ export const ApplyDescription = styled . div < { $isMobile : boolean ; $isTablet : boolean } > `
247
+ font-size: ${ ( { $isMobile, $isTablet } ) => ( $isMobile ? "13px " : $isTablet ? "17px" : "20px ") } ;
249
248
margin-top: 15px;
250
249
color: #E8F5E9;
251
- text-align: center ;
250
+ text-align: left ;
252
251
` ;
253
252
254
253
export const Bud = styled . div < { $isMobile : boolean ; $isTablet : boolean } > `
0 commit comments