From fab825d3fc723825e94347ffefb0c837cd2632c2 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Thu, 16 Mar 2017 14:31:35 -0400 Subject: [PATCH] changed the dropdown line height I changed the line height of the drop down from 2 to 1.5. --- css/app.css | 4 ++-- scss/_topbar.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/css/app.css b/css/app.css index ef23dff..7e345b3 100644 --- a/css/app.css +++ b/css/app.css @@ -6418,7 +6418,7 @@ header { border-top-right-radius: 0; } .top-bar-section ul li ul.dropdown li:not(.has-form):not(.active) > a:not(.button) { font-size: 1.5rem; - line-height: 2; } + line-height: 1.5; } @media screen and (max-width: 1219px) { .top-bar-section ul li ul.dropdown li:not(.has-form):not(.active) > a:not(.button) { font-size: 1.375rem; } } @@ -6436,7 +6436,7 @@ header { font-size: 0.875rem; } } .top-bar-section ul li ul.dropdown li.active:not(.has-form) > a:not(.button) { font-size: 1.5rem; - line-height: 2; } + line-height: 1.5; } @media screen and (max-width: 1219px) { .top-bar-section ul li ul.dropdown li.active:not(.has-form) > a:not(.button) { font-size: 1.375rem; } } diff --git a/scss/_topbar.scss b/scss/_topbar.scss index 0c9cb7c..592aa80 100644 --- a/scss/_topbar.scss +++ b/scss/_topbar.scss @@ -112,7 +112,7 @@ &:not(.has-form):not(.active) { & > a:not(.button) { font-size: rem-calc(24); - line-height: 2; + line-height: 1.5; @media screen and (max-width: 1219px) { font-size: rem-calc(22); } @@ -133,7 +133,7 @@ &.active:not(.has-form) { & > a:not(.button) { font-size: rem-calc(24); - line-height: 2; + line-height: 1.5; @media screen and (max-width: 1219px) { font-size: rem-calc(22); } -- 2.17.1