Skip to content

Commit 077af05

Browse files
authored
fix: Responsive Sign In Page (#2770)
1 parent a5edbcb commit 077af05

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/browser/pages/login.css

+15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
body {
2+
min-height: 568px;
3+
min-width: 320px;
24
overflow: auto;
35
}
46

@@ -15,6 +17,12 @@ body {
1517
width: 100%;
1618
}
1719

20+
@media (max-width: 600px) {
21+
.login-form > .field {
22+
flex-direction: column;
23+
}
24+
}
25+
1826
.login-form > .error {
1927
color: red;
2028
margin-top: 16px;
@@ -38,6 +46,13 @@ body {
3846
margin-left: 20px;
3947
}
4048

49+
@media (max-width: 600px) {
50+
.login-form > .field > .submit {
51+
margin-left: 0px;
52+
margin-top: 16px;
53+
}
54+
}
55+
4156
input {
4257
-webkit-appearance: none;
4358
}

0 commit comments

Comments
 (0)