Skip to content

Commit b022c96

Browse files
LucyChyzhovaKiarokh
authored andcommitted
fix(table): change the sorting arrows direction
1 parent 0524213 commit b022c96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/table/partial-styles/tabulator-arrow.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
.tabulator-col.tabulator-sortable[aria-sort='desc']
7878
& {
7979
height: 0;
80-
transform: translate3d(0, 0.2rem, 0);
80+
transform: translate3d(0, -0.2rem, 0) rotate(180deg);
8181
border-top-width: 0.25rem;
8282
border-bottom-width: 0;
8383
border-top-color: var(--table-arrow-color--active);
@@ -88,7 +88,7 @@
8888
.tabulator-col.tabulator-sortable[aria-sort='asc']
8989
& {
9090
height: 0;
91-
transform: translate3d(0, -0.2rem, 0);
91+
transform: translate3d(0, 0.2rem, 0) rotate(180deg);
9292
border-top-width: 0;
9393
border-bottom-width: 0.25rem;
9494
border-bottom-color: var(--table-arrow-color--active);

0 commit comments

Comments
 (0)