From 68aa388028fd34c6cd34124d2cab3947f3aaa852 Mon Sep 17 00:00:00 2001 From: Iris Scholten Date: Tue, 19 Jun 2018 16:19:15 -0700 Subject: [PATCH] Change Ascending arrows to point up instead of down --- ui/src/style/components/table-graph.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/style/components/table-graph.scss b/ui/src/style/components/table-graph.scss index e5052dfc75..b79d9a5844 100644 --- a/ui/src/style/components/table-graph.scss +++ b/ui/src/style/components/table-graph.scss @@ -86,7 +86,7 @@ position: absolute; top: 50%; right: 6px; - transform: translateY(-50%); + transform: translateY(-50%) rotate(180deg); font-size: 13px; opacity: 0; transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease; @@ -107,10 +107,10 @@ } } &__sort-asc:before { - transform: translateY(-50%) rotate(0deg); + transform: translateY(-50%) rotate(180deg); } &__sort-desc:before { - transform: translateY(-50%) rotate(180deg); + transform: translateY(-50%) rotate(0deg); } }