From 2287c640f9780d0c85c0e981a85fc8793a15f43c Mon Sep 17 00:00:00 2001 From: Blackbaud-SteveBrush Date: Tue, 15 Jan 2019 12:47:03 -0500 Subject: [PATCH] Fixed centering --- src/app/public/modules/chevron/chevron.component.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/public/modules/chevron/chevron.component.scss b/src/app/public/modules/chevron/chevron.component.scss index b5210026..ef45f39f 100644 --- a/src/app/public/modules/chevron/chevron.component.scss +++ b/src/app/public/modules/chevron/chevron.component.scss @@ -25,7 +25,7 @@ display: inline-block; height: 10px; position: absolute; - top: 8px; + top: 10px; transition: transform $sky-transition-time-medium, left $sky-transition-time-medium; vertical-align: top; width: 10px; @@ -33,24 +33,24 @@ .sky-chevron-up { .sky-chevron-left { - left: 6px; + left: 7px; transform: rotate(-45deg); } .sky-chevron-right { - left: 6px; + left: 7px; transform: rotate(45deg); } } .sky-chevron-down { .sky-chevron-left { - left: 1px; + left: 2px; transform: rotate(45deg); } .sky-chevron-right { - left: 11px; + left: 12px; transform: rotate(-45deg); } }