From 1f3d2100185bcee3bb20086b0df0893fb662547b Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Tue, 25 Oct 2016 21:13:25 +0100 Subject: [PATCH] don't display toolbar "selected" text when the device is small --- _embed/public/css/styles.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/_embed/public/css/styles.css b/_embed/public/css/styles.css index 3368741b..511378e5 100644 --- a/_embed/public/css/styles.css +++ b/_embed/public/css/styles.css @@ -473,8 +473,8 @@ header { z-index: 999; padding: 1.7em 0; background-color: #2196f3; - border-bottom: 1px solid rgba(0, 0, 0, 0.075); - box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); + border-bottom: 1px solid rgba(0,0,0,0.075); + box-shadow: 0 0 5px rgba(0,0,0,0.1); } header h1 { @@ -1186,4 +1186,10 @@ i.spin { column-count: 1; column-gap: 0; } -} \ No newline at end of file +} + +@media screen and (max-width: 450px) { + #toolbar p { + display: none; + } +}