diff --git a/src/app.css b/src/app.css index e70c1315..3067eb63 100644 --- a/src/app.css +++ b/src/app.css @@ -21,11 +21,15 @@ html { box-sizing: border-box; background: var(--background); height: calc(100vh - 20px); - margin: 10px 10px 10px 0; + margin: 10px 0 10px 0; border-radius: var(--radius); border: 1px solid var(--border); } +.aside-collapsed .x-container { + margin-right: 10px; +} + html.dark .x-container { background: var(--sidebar); } diff --git a/src/components/AvatarInfo.vue b/src/components/AvatarInfo.vue index 777d2a5a..77c54509 100644 --- a/src/components/AvatarInfo.vue +++ b/src/components/AvatarInfo.vue @@ -3,7 +3,12 @@ {{ avatarName }} - {{ avatarTags }} + + + {{ avatarTags }} + @@ -11,6 +16,7 @@ import { ref, watch } from 'vue'; import { Lock } from 'lucide-vue-next'; + import { TooltipWrapper } from './ui/tooltip'; import { useAvatarStore } from '../stores'; const avatarStore = useAvatarStore(); diff --git a/src/components/DisplayName.vue b/src/components/DisplayName.vue index 7ec035b1..cd98b84c 100644 --- a/src/components/DisplayName.vue +++ b/src/components/DisplayName.vue @@ -1,5 +1,5 @@