From 9e4ea6a7ab69dda4415d9c888a696c21ccb90ddc Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 5 Nov 2013 12:57:04 -0500 Subject: [PATCH] Fixes issue where direct child column could not use pc/tablet/mobile only --- src/collections/grid.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/collections/grid.less b/src/collections/grid.less index cd27436c0..60de77526 100755 --- a/src/collections/grid.less +++ b/src/collections/grid.less @@ -538,6 +538,7 @@ body > .ui.grid { @media only screen and (min-width : 768px) { .ui.mobile.only.grid, .ui.grid > .mobile.only.row, + .ui.grid > .mobile.only.column, .ui.grid > .row > .mobile.only.column { display: none; } @@ -573,6 +574,7 @@ body > .ui.grid { @media only screen and (max-width : 768px), (min-width: 998px) { .ui.tablet.only.grid, .ui.grid > .tablet.only.row, + .ui.grid > .tablet.only.column, .ui.grid > .row > .tablet.only.column { display: none; } @@ -608,6 +610,7 @@ body > .ui.grid { @media only screen and (max-width : 998px) { .ui.computer.only.grid, .ui.grid > .computer.only.row, + .ui.grid > .computer.only.column, .ui.grid > .row > .computer.only.column { display: none; }