From 382172a64ca8bff2c277475b8128bbc2a43d5558 Mon Sep 17 00:00:00 2001 From: Kyle Doherty <kyle.l.doherty@gmail.com> Date: Mon, 21 Mar 2016 16:34:08 -0700 Subject: [PATCH] scope embiggening --- frontend/src/components/dashboard/dashboard.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/dashboard/dashboard.css b/frontend/src/components/dashboard/dashboard.css index 11a52044897..4e4570ca082 100644 --- a/frontend/src/components/dashboard/dashboard.css +++ b/frontend/src/components/dashboard/dashboard.css @@ -419,7 +419,13 @@ increase the base font size in fullscreen mode to bump things up to accomodate for viewing distance on TVs etc */ -.Dashboard.Dashboard--fullscreen { font-size: 1.6em; } +@media screen and (min-width: 1280px) { + .Dashboard.Dashboard--fullscreen { font-size: 1.2em; } + /* keep the dashboard header title from being overwhelmingly large */ + .Dashboard.Dashboard--fullscreen .Header-title-name { font-size: 1em; } +} + +@media screen and (min-width: 1540px) { + .Dashboard.Dashboard--fullscreen { font-size: 1.6em; } -/* keep the dashboard header title from being overwhelmingly large */ -.Dashboard.Dashboard--fullscreen .Header-title-name { font-size: 1em; } +} -- GitLab