Skip to content

Commit

Permalink
Fix ascending/descending icons; update semver (#5135)
Browse files Browse the repository at this point in the history
  • Loading branch information
pastelcyborg committed Jun 13, 2024
1 parent 2c51810 commit 8d1ea39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vanilla-framework",
"version": "4.12.1",
"version": "4.12.2",
"author": {
"email": "webteam@canonical.com",
"name": "Canonical Webteam"
Expand Down
6 changes: 3 additions & 3 deletions scss/_patterns_table-sortable.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@

&[aria-sort='ascending']::after {
@extend %heading-icon;

-webkit-transform: rotate(180deg); // stylelint-disable-line property-no-vendor-prefix
transform: rotate(180deg);
}

&[aria-sort='descending']::after {
@extend %heading-icon;

-webkit-transform: rotate(180deg); // stylelint-disable-line property-no-vendor-prefix
transform: rotate(180deg);
}

&[aria-sort]:hover {
Expand Down

0 comments on commit 8d1ea39

Please sign in to comment.