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 @@ --/--
-
+
@@ -223,7 +223,7 @@ v-for="group in localAvatarFavoriteGroups" :key="group" :class="[ - 'group-item', + 'group-item hover:shadow-sm', { 'is-active': !hasSearchInput && isGroupActive('local', group) } ]" @click="handleGroupClick('local', group)"> @@ -274,7 +274,7 @@ :content="t('view.favorite.avatars.local_favorites')">
@@ -406,7 +406,7 @@
@@ -249,7 +249,7 @@
{{ t('view.favorite.worlds.new_group') }} @@ -383,7 +383,7 @@
@@ -1357,7 +1357,6 @@ .group-item:hover { background-color: var(--accent); - box-shadow: var(--shadow-sm); } .group-item__top { @@ -1549,7 +1548,6 @@ :deep(.favorites-search-card:hover) { background-color: var(--accent); - box-shadow: var(--shadow-sm); } :deep(.favorites-search-card.is-selected) { diff --git a/src/views/Favorites/FavoritesWorld.vue b/src/views/Favorites/FavoritesWorld.vue index 4cb3ae16..35e43b49 100644 --- a/src/views/Favorites/FavoritesWorld.vue +++ b/src/views/Favorites/FavoritesWorld.vue @@ -112,7 +112,7 @@ v-for="group in favoriteWorldGroups" :key="group.key" :class="[ - 'group-item', + 'group-item hover:shadow-sm', `group-item--${group.visibility}`, { 'is-active': !hasSearchInput && isGroupActive('remote', group.key) } ]" @@ -186,7 +186,7 @@ v-for="group in worldGroupPlaceholders" :key="group.key" :class="[ - 'group-item', + 'group-item hover:shadow-sm', 'group-item--placeholder', { 'is-active': !hasSearchInput && isGroupActive('remote', group.key) } ]"> @@ -195,7 +195,7 @@ --/--
-
+
@@ -223,7 +223,7 @@ v-for="group in localWorldFavoriteGroups" :key="group" :class="[ - 'group-item', + 'group-item hover:shadow-sm', { 'is-active': !hasSearchInput && isGroupActive('local', group) } ]" @click="handleGroupClick('local', group)"> @@ -269,7 +269,7 @@
{{ t('view.favorite.worlds.new_group') }} @@ -354,7 +354,7 @@
{{ avatarFallback }}
- +
{{ friend.name }}
@@ -266,7 +266,6 @@ right: calc(8px * var(--card-scale)); inline-size: calc(12px * var(--card-scale)); block-size: calc(12px * var(--card-scale)); - border-radius: var(--radius-full); pointer-events: none; } diff --git a/src/views/Tools/components/GroupCalendarMonth.vue b/src/views/Tools/components/GroupCalendarMonth.vue index 12b38473..dd295451 100644 --- a/src/views/Tools/components/GroupCalendarMonth.vue +++ b/src/views/Tools/components/GroupCalendarMonth.vue @@ -230,7 +230,7 @@ transform: translateX(-50%); width: 6px; height: 6px; - border-radius: var(--radius-full); + border-radius: var(--rounded-full); background-color: var(--group-calendar-event-dot, #ef4444); z-index: 5; pointer-events: none;