From 9bcbb25b864049a295a33fe8e279eaa08f32c637 Mon Sep 17 00:00:00 2001 From: alisan617 Date: Wed, 19 Oct 2016 13:28:02 -0400 Subject: [PATCH] byte-size fix for 2 lines page navs --- lms/static/sass/course/layout/_courseware_header.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lms/static/sass/course/layout/_courseware_header.scss b/lms/static/sass/course/layout/_courseware_header.scss index 104cdfe805..8b96ccbc65 100644 --- a/lms/static/sass/course/layout/_courseware_header.scss +++ b/lms/static/sass/course/layout/_courseware_header.scss @@ -18,7 +18,7 @@ padding: ($baseline*0.75) 0 ($baseline*0.75) 0; li { - @include float(left); + display: inline-block; list-style: none; &.prominent { @@ -41,12 +41,13 @@ display: block; text-align: center; text-decoration: none; + border-bottom: 4px solid transparent; &:hover, &:focus, &.active { color: $uxpl-blue-hover-active; - border-bottom: 4px solid $uxpl-blue-hover-active; + border-bottom-color: $uxpl-blue-hover-active; } } }