diff --git a/src/components/NavMenu.vue b/src/components/NavMenu.vue index 8c335bf3..f6b1ee7a 100644 --- a/src/components/NavMenu.vue +++ b/src/components/NavMenu.vue @@ -231,8 +231,12 @@ :aria-label="themeColorDisplayName(theme)" :title="themeColorDisplayName(theme)" @click="handleThemeColorSelect(theme)" - class="h-3.5 w-3.5 shrink-0 rounded-sm" - :class="currentThemeColor === theme.key ? 'ring-1 --ring' : ''" + class="h-3.5 w-3.5 shrink-0 rounded-sm transition-transform hover:scale-125" + :class=" + currentThemeColor === theme.key + ? 'ring-1 ring-ring ring-offset-1 ring-offset-background' + : '' + " :style="{ backgroundColor: theme.swatch }"> @@ -381,6 +385,7 @@ items: ['friend-log', 'friend-list', 'moderation'] }, { type: 'item', key: 'notification' }, + { type: 'item', key: 'my-avatars' }, { type: 'folder', id: 'default-folder-charts', diff --git a/src/components/ui/data-table/DataTableLayout.vue b/src/components/ui/data-table/DataTableLayout.vue index b9d14d25..4b923529 100644 --- a/src/components/ui/data-table/DataTableLayout.vue +++ b/src/components/ui/data-table/DataTableLayout.vue @@ -34,9 +34,36 @@