From 91241bd25401635a8e174d34c787046ca9c7d150 Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 20 Jan 2015 17:27:15 -0500 Subject: [PATCH] Fix #1651 Missing responsive width variables in form --- src/definitions/collections/form.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/definitions/collections/form.less b/src/definitions/collections/form.less index 9d15dc2b9..db58bc9a1 100755 --- a/src/definitions/collections/form.less +++ b/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,