Tweak an icon, have some fun with it

This commit is contained in:
rijkvanzanten
2022-03-14 15:51:23 -04:00
parent 267cfd8554
commit 768ce16a14

View File

@@ -46,7 +46,7 @@
@click="onSortChange?.({ by: header.value, desc: false })"
>
<v-list-item-icon>
<v-icon name="sort" />
<v-icon name="sort" class="flip" />
</v-list-item-icon>
<v-list-item-content>
{{ t('sort_asc') }}
@@ -328,4 +328,8 @@ function removeField(fieldKey: string) {
--v-icon-color: var(--foreground-normal);
}
}
.flip {
transform: scaleY(-1);
}
</style>