From 65a8f7f6c99f9a979c66fe1d0e8e436a541c0ffa Mon Sep 17 00:00:00 2001 From: Stefanie Fluin Date: Mon, 1 May 2017 12:44:02 -0700 Subject: [PATCH] fix(aio): search result styling - Changed search result link hover state to white to be more legible - Increased the max-height on search results container to remove the jitter - Changed search results to have space-around vs space-between for more appropriate spacing --- aio/src/styles/1-layouts/_search-results.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/aio/src/styles/1-layouts/_search-results.scss b/aio/src/styles/1-layouts/_search-results.scss index 01ade01bb5..96d355e716 100644 --- a/aio/src/styles/1-layouts/_search-results.scss +++ b/aio/src/styles/1-layouts/_search-results.scss @@ -5,12 +5,12 @@ aio-search-results { .search-results { display: flex; flex-direction: row; - justify-content: space-between; + justify-content: space-around; overflow: auto; padding: 68px 32px 0; color: $offwhite; width: auto; - max-height: 40%; + max-height: 50%; position: fixed; top: 0; left: 0; @@ -58,8 +58,7 @@ aio-search-results { text-decoration: none; font-weight: 300; &:hover { - color: $blue; - font-weight: 500; + color: $white; } &:visited { text-decoration: none;