From 2d812d7c05e97f5a06a4b04ed195d841046f09bc Mon Sep 17 00:00:00 2001 From: pa Date: Sat, 17 Jan 2026 23:14:31 +0900 Subject: [PATCH] some fix --- src/app.css | 10 ++- src/components/Location.vue | 7 ++- src/components/NavMenu.vue | 62 +++++++++++++++++-- .../ui/data-table/DataTableLayout.vue | 2 +- src/components/ui/sidebar/Sidebar.vue | 6 +- src/localization/en.json | 3 + src/shared/constants/fonts.js | 12 +++- src/shared/utils/base/ui.js | 44 ++++++++----- src/stores/vrcx.js | 16 ++--- src/styles/globals.css | 18 ++++++ src/views/Favorites/FavoritesAvatar.vue | 6 +- src/views/Favorites/FavoritesFriend.vue | 6 +- src/views/Favorites/FavoritesWorld.vue | 6 +- src/views/Layout/AuthenticatedLayout.vue | 4 +- src/views/PlayerList/PlayerList.vue | 37 ++++++----- src/views/PlayerList/columns.jsx | 31 +++++----- .../components/Tabs/AppearanceTab.vue | 20 +++--- src/views/Sidebar/Sidebar.vue | 18 +++--- 18 files changed, 211 insertions(+), 97 deletions(-) diff --git a/src/app.css b/src/app.css index 23ec274d..e70c1315 100644 --- a/src/app.css +++ b/src/app.css @@ -16,12 +16,18 @@ html { .x-container { position: relative; - flex: 1; padding: 10px; overflow: hidden auto; box-sizing: border-box; + background: var(--background); + height: calc(100vh - 20px); + margin: 10px 10px 10px 0; + border-radius: var(--radius); + border: 1px solid var(--border); +} + +html.dark .x-container { background: var(--sidebar); - height: 100%; } diff --git a/src/components/Location.vue b/src/components/Location.vue index 94e23536..259e2218 100644 --- a/src/components/Location.vue +++ b/src/components/Location.vue @@ -8,7 +8,7 @@ :class="['x-location', { 'x-link': link && location !== 'private' && location !== 'offline' }]" class="inline-flex min-w-0 flex-nowrap items-center overflow-hidden" @click="handleShowWorldDialog"> - + {{ text }} {{ ` · #${instanceName}` @@ -31,7 +31,7 @@ :class="['x-location', { 'x-link': link && location !== 'private' && location !== 'offline' }]" class="inline-flex min-w-0 flex-nowrap items-center overflow-hidden" @click="handleShowWorldDialog"> - + {{ text }} {{ ` · #${instanceName}` @@ -54,8 +54,8 @@