From 40f4ca4f7fc0f261f44017c316592898fd30a52f Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Tue, 3 Jan 2017 23:33:24 -0500 Subject: [PATCH] Remove dashboard edit-list title columns after the second column on screen-sm-max and below, and all but the first column on screen-xs-max and below --- resources/assets/sass/dashboard.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/resources/assets/sass/dashboard.scss b/resources/assets/sass/dashboard.scss index 6ca6676..d0a791e 100644 --- a/resources/assets/sass/dashboard.scss +++ b/resources/assets/sass/dashboard.scss @@ -272,6 +272,14 @@ body { .column { float: left; margin-right: 10px; + + @media (max-width: $screen-sm-max) { + &:nth-child(n+4) { display: none; } + } + + @media (max-width: $screen-xs-max) { + &:nth-child(n+2) { display: none; } + } } }