Skip to content

Commit 36565aa

Browse files
authored
Fix form widths (#69)
1 parent 834eda2 commit 36565aa

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

src/containers/CheckoutAuthPage.less

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,22 @@
3636
}
3737
}
3838

39-
.form-control {
40-
display: block;
41-
height: 34px;
42-
padding: 6px 12px;
43-
font-size: 14px;
44-
color: #555555;
45-
background-color: #ffffff;
46-
border: 1px solid #cccccc;
47-
border-radius: 4px;
48-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
39+
.form-group {
40+
@media (min-width: @mobileWidth) {
41+
width: 50%;
42+
}
43+
44+
.form-control {
45+
display: block;
46+
height: 34px;
47+
padding: 6px 12px;
48+
font-size: 14px;
49+
color: #555555;
50+
background-color: #ffffff;
51+
border: 1px solid #cccccc;
52+
border-radius: 4px;
53+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
54+
}
4955
}
5056

5157
.checkout-auth-option-container {

0 commit comments

Comments
 (0)