@@ -39,7 +39,7 @@ import history from "../../history";
39
39
import RefreshIcon from "../../icons/RefreshIcon" ;
40
40
import MainError from "../Console/Common/MainError/MainError" ;
41
41
import { encodeFileName } from "../../common/utils" ;
42
- import { LockIcon , UsersIcon , LoginMinIOLogo } from "../../icons" ;
42
+ import { LockIcon , LoginMinIOLogo , UsersIcon } from "../../icons" ;
43
43
import { spacingUtils } from "../Console/Common/FormComponents/common/styleLibrary" ;
44
44
45
45
const styles = ( theme : Theme ) =>
@@ -66,7 +66,8 @@ const styles = (theme: Theme) =>
66
66
} ,
67
67
} ,
68
68
shadowBox : {
69
- boxShadow : "0px 3px 20px #00000014" ,
69
+ boxShadow :
70
+ "rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.125) 0px 15px 50px 0px" ,
70
71
height : "100%" ,
71
72
} ,
72
73
loginContainer : {
@@ -111,23 +112,49 @@ const styles = (theme: Theme) =>
111
112
"& .left-items" : {
112
113
margin : "auto" ,
113
114
textAlign : "left" ,
115
+ paddingRight : 240 ,
116
+ paddingBottom : 200 ,
117
+ "@media (max-width: 1400px)" : {
118
+ paddingBottom : 120 ,
119
+ paddingRight : 50 ,
120
+ } ,
121
+ "@media (max-width: 900px)" : {
122
+ paddingBottom : 0 ,
123
+ paddingRight : 0 ,
124
+ } ,
125
+ "@media (max-width: 600px)" : {
126
+ paddingBottom : 0 ,
127
+ paddingRight : 0 ,
128
+ } ,
129
+ } ,
130
+ "& .left-logo" : {
131
+ "& .min-icon" : {
132
+ width : 108 ,
133
+ } ,
134
+ marginBottom : 10 ,
114
135
} ,
115
136
"& .text-line1" : {
116
- font : "normal 100 70px 'Lato'" ,
117
- marginBottom : 20 ,
137
+ font : " 100 70px 'Lato'" ,
138
+
118
139
"@media (max-width: 600px)" : {
119
140
fontSize : 35 ,
120
141
} ,
142
+ "@media (max-width: 800px)" : {
143
+ fontSize : 45 ,
144
+ } ,
121
145
} ,
122
146
"& .text-line2" : {
123
- fontSize : 70 ,
124
- marginLeft : 25 ,
125
- fontWeight : 400 ,
126
-
147
+ fontSize : 100 ,
148
+ fontWeight : 100 ,
149
+ textTransform : "uppercase" ,
127
150
"@media (max-width: 600px)" : {
128
151
fontSize : 35 ,
129
152
marginLeft : 0 ,
130
153
} ,
154
+ "@media (max-width: 800px)" : {
155
+ fontSize : 55 ,
156
+ marginLeft : 0 ,
157
+ } ,
131
158
} ,
132
159
"& .logo-console" : {
133
160
display : "flex" ,
@@ -197,7 +224,10 @@ const inputStyles = makeStyles((theme: Theme) =>
197
224
root : {
198
225
"& .MuiOutlinedInput-root" : {
199
226
paddingLeft : 0 ,
200
- "& svg" : { height : 16 } ,
227
+ "& svg" : {
228
+ height : 16 ,
229
+ color : theme . palette . primary . main ,
230
+ } ,
201
231
"& input" : {
202
232
padding : 5 ,
203
233
paddingLeft : 0 ,
@@ -362,7 +392,10 @@ const Login = ({
362
392
variant = { "outlined" }
363
393
InputProps = { {
364
394
startAdornment : (
365
- < InputAdornment position = "start" >
395
+ < InputAdornment
396
+ position = "start"
397
+ className = { classes . iconColor }
398
+ >
366
399
< UsersIcon />
367
400
</ InputAdornment >
368
401
) ,
@@ -386,7 +419,10 @@ const Login = ({
386
419
variant = { "outlined" }
387
420
InputProps = { {
388
421
startAdornment : (
389
- < InputAdornment position = "start" >
422
+ < InputAdornment
423
+ position = "start"
424
+ className = { classes . iconColor }
425
+ >
390
426
< LockIcon />
391
427
</ InputAdornment >
392
428
) ,
@@ -521,11 +557,11 @@ const Login = ({
521
557
< Grid container className = { classes . loginContainer } >
522
558
< Grid item className = "consoleTextBanner" >
523
559
< div className = "left-items" >
524
- < div className = "text-line1" > Welcome to</ div >
525
- < div className = "logo-console" >
560
+ < div className = "left-logo" >
526
561
< LoginMinIOLogo />
527
- < div className = "text-line2" > { consoleText } </ div >
528
562
</ div >
563
+ < div className = "text-line1" > Welcome to</ div >
564
+ < div className = "text-line2" > { consoleText } </ div >
529
565
</ div >
530
566
</ Grid >
531
567
< Grid item className = "right-items" >
0 commit comments