From b9c2eb3eae41d7f374bcb3581dc7290609a877ab Mon Sep 17 00:00:00 2001 From: Lee Briggs Date: Wed, 1 Mar 2017 12:35:06 +0000 Subject: [PATCH] Switch the arrows around The desc and asc arrows were the wrong way round --- app/assets/stylesheets/_tables.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/_tables.scss b/app/assets/stylesheets/_tables.scss index efaedf822..f6ba67d3f 100644 --- a/app/assets/stylesheets/_tables.scss +++ b/app/assets/stylesheets/_tables.scss @@ -23,12 +23,12 @@ [aria-sort=descending] > * { &:after { - content: '\25B2'; // Up arrow + content: '\25BC'; // Down arrow } } [aria-sort=ascending] > * { &:after { - content: '\25BC'; // Down arrow + content: '\25B2'; // Up arrow } }