Browse Source

Fix #1651 Missing responsive width variables in form

pull/1698/merge
jlukic 9 years ago
parent
commit
91241bd254
1 changed files with 2 additions and 2 deletions
  1. 4
      src/definitions/collections/form.less

4
src/definitions/collections/form.less

@ -668,7 +668,7 @@
}
/* Swap to full width on mobile */
@media only screen and (max-width : 767px) {
@media only screen and (max-width : @largestMobileScreen) {
.ui.form .two.fields > .fields,
.ui.form .two.fields > .field,
.ui.form .three.fields > .fields,
@ -766,7 +766,7 @@
}
/* Swap to full width on mobile */
@media only screen and (max-width : 767px) {
@media only screen and (max-width : @largestMobileScreen) {
.ui.form .two.fields > .fields,
.ui.form .two.fields > .field,
.ui.form .three.fields > .fields,

Loading…
Cancel
Save