From 457e70226734af15802b79c9a8d0737269bc8b18 Mon Sep 17 00:00:00 2001 From: matt Date: Sun, 6 Feb 2022 23:22:06 +0000 Subject: [PATCH] Hide subject column on mobile screens --- src/stylesheets/pages/_tests.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/stylesheets/pages/_tests.scss b/src/stylesheets/pages/_tests.scss index 932e24f..1cb5f72 100644 --- a/src/stylesheets/pages/_tests.scss +++ b/src/stylesheets/pages/_tests.scss @@ -3,5 +3,11 @@ th, td { overflow-wrap: anywhere; } + + @include hide-column(3); + + @include respond-to('medium') { + @include show-column(3); + } } }