@ansiversa/components 0.0.93 → 0.0.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ansiversa/components",
3
- "version": "0.0.93",
3
+ "version": "0.0.94",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1148,18 +1148,16 @@
1148
1148
  }
1149
1149
 
1150
1150
  .av-table__sort--active::after {
1151
- color: transparent;
1152
- background: linear-gradient(to bottom, var(--ans-text) 0 50%, var(--ans-muted) 50% 100%);
1153
- -webkit-background-clip: text;
1154
- background-clip: text;
1151
+ color: var(--ans-text);
1152
+ content: "▲";
1155
1153
  }
1156
1154
 
1157
1155
  .av-table__sort--asc::after {
1158
- background: linear-gradient(to bottom, var(--ans-text) 0 50%, var(--ans-muted) 50% 100%);
1156
+ content: "▲";
1159
1157
  }
1160
1158
 
1161
1159
  .av-table__sort--desc::after {
1162
- background: linear-gradient(to bottom, var(--ans-muted) 0 50%, var(--ans-text) 50% 100%);
1160
+ content: "▼";
1163
1161
  }
1164
1162
 
1165
1163
  .av-table--sticky thead th {