Skip to content

Commit

Permalink
Fix form widths (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunmaharaj authored Oct 7, 2018
1 parent 834eda2 commit 36565aa
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions src/containers/CheckoutAuthPage.less
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,22 @@
}
}

.form-control {
display: block;
height: 34px;
padding: 6px 12px;
font-size: 14px;
color: #555555;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
.form-group {
@media (min-width: @mobileWidth) {
width: 50%;
}

.form-control {
display: block;
height: 34px;
padding: 6px 12px;
font-size: 14px;
color: #555555;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
}

.checkout-auth-option-container {
Expand Down

0 comments on commit 36565aa

Please sign in to comment.