diff --git a/src/styles/globals.css b/src/styles/globals.css index 3851205c..baa05683 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -228,7 +228,7 @@ ::-webkit-scrollbar-thumb { background-color: var(--border); - border-radius: var(--radius-full); + border-radius: var(--rounded-full); border: 2px solid transparent; background-clip: content-box; } diff --git a/src/views/Favorites/FavoritesAvatar.vue b/src/views/Favorites/FavoritesAvatar.vue index 9ebda1a5..71a181eb 100644 --- a/src/views/Favorites/FavoritesAvatar.vue +++ b/src/views/Favorites/FavoritesAvatar.vue @@ -110,7 +110,7 @@ v-for="group in favoriteAvatarGroups" :key="group.key" :class="[ - 'group-item', + 'group-item hover:shadow-sm', `group-item--${group.visibility}`, { 'is-active': !hasSearchInput && isGroupActive('remote', group.key) } ]" @@ -184,7 +184,7 @@ v-for="group in avatarGroupPlaceholders" :key="group.key" :class="[ - 'group-item', + 'group-item hover:shadow-sm', 'group-item--placeholder', { 'is-active': !hasSearchInput && isGroupActive('remote', group.key) } ]"> @@ -193,7 +193,7 @@ --/--