Skip to content

Commit

Permalink
Switch the arrows around
Browse files Browse the repository at this point in the history
The desc and asc arrows were the wrong way round
  • Loading branch information
Lee Briggs committed Mar 1, 2017
1 parent 7afaaf0 commit b9c2eb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/stylesheets/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

0 comments on commit b9c2eb3

Please sign in to comment.