We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0524213 commit b022c96Copy full SHA for b022c96
src/components/table/partial-styles/tabulator-arrow.scss
@@ -77,7 +77,7 @@
77
.tabulator-col.tabulator-sortable[aria-sort='desc']
78
& {
79
height: 0;
80
- transform: translate3d(0, 0.2rem, 0);
+ transform: translate3d(0, -0.2rem, 0) rotate(180deg);
81
border-top-width: 0.25rem;
82
border-bottom-width: 0;
83
border-top-color: var(--table-arrow-color--active);
@@ -88,7 +88,7 @@
88
.tabulator-col.tabulator-sortable[aria-sort='asc']
89
90
91
- transform: translate3d(0, -0.2rem, 0);
+ transform: translate3d(0, 0.2rem, 0) rotate(180deg);
92
border-top-width: 0;
93
border-bottom-width: 0.25rem;
94
border-bottom-color: var(--table-arrow-color--active);
0 commit comments