mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
fix main dialog width
This commit is contained in:
@@ -5,9 +5,9 @@
|
|||||||
/></span>
|
/></span>
|
||||||
<TooltipWrapper v-if="avatarTags">
|
<TooltipWrapper v-if="avatarTags">
|
||||||
<template #content>
|
<template #content>
|
||||||
<span>{{ avatarTags }}</span>
|
<span class="truncate">{{ avatarTags }}</span>
|
||||||
</template>
|
</template>
|
||||||
<span v-if="avatarTags" style="font-size: 12px" class="truncate">{{ avatarTags }}</span>
|
<span style="font-size: 12px" class="truncate">{{ avatarTags }}</span>
|
||||||
</TooltipWrapper>
|
</TooltipWrapper>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="w-223">
|
||||||
|
<DialogHeader class="sr-only">
|
||||||
|
<DialogTitle>{{ avatarDialog.ref?.name || t('dialog.avatar.info.header') }}</DialogTitle>
|
||||||
|
<DialogDescription>
|
||||||
|
{{ avatarDialog.ref?.description || avatarDialog.ref?.name || t('dialog.avatar.info.header') }}
|
||||||
|
</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
<div>
|
<div>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<img
|
<img
|
||||||
@@ -538,6 +544,7 @@
|
|||||||
} from 'lucide-vue-next';
|
} from 'lucide-vue-next';
|
||||||
import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from '@/components/ui/carousel';
|
import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from '@/components/ui/carousel';
|
||||||
import { computed, defineAsyncComponent, nextTick, ref, watch } from 'vue';
|
import { computed, defineAsyncComponent, nextTick, ref, watch } from 'vue';
|
||||||
|
import { DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { InputGroupTextareaField } from '@/components/ui/input-group';
|
import { InputGroupTextareaField } from '@/components/ui/input-group';
|
||||||
import { TabsUnderline } from '@/components/ui/tabs';
|
import { TabsUnderline } from '@/components/ui/tabs';
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="w-223">
|
||||||
<DialogHeader class="sr-only">
|
<DialogHeader class="sr-only">
|
||||||
<DialogTitle>{{ groupDialog.ref?.name || t('dialog.group.info.header') }}</DialogTitle>
|
<DialogTitle>{{ groupDialog.ref?.name || t('dialog.group.info.header') }}</DialogTitle>
|
||||||
<DialogDescription>
|
<DialogDescription>
|
||||||
@@ -356,8 +356,8 @@
|
|||||||
{{ t('dialog.group.info.instances') }}
|
{{ t('dialog.group.info.instances') }}
|
||||||
</span>
|
</span>
|
||||||
<div v-for="room in groupDialog.instances" :key="room.tag" style="width: 100%">
|
<div v-for="room in groupDialog.instances" :key="room.tag" style="width: 100%">
|
||||||
<div style="margin: 5px 0" class="flex items-center">
|
<div style="margin: 5px 0" class="flex flex-col">
|
||||||
<Location :location="room.tag" />
|
<Location :location="room.tag" class="text-sm" />
|
||||||
<InstanceActionBar
|
<InstanceActionBar
|
||||||
class="ml-1"
|
class="ml-1"
|
||||||
:location="room.tag"
|
:location="room.tag"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="w-223">
|
||||||
<DialogHeader class="sr-only">
|
<DialogHeader class="sr-only">
|
||||||
<DialogTitle>{{
|
<DialogTitle>{{
|
||||||
userDialog.ref?.displayName || userDialog.id || t('dialog.user.info.header')
|
userDialog.ref?.displayName || userDialog.id || t('dialog.user.info.header')
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="w-223">
|
||||||
<DialogHeader class="sr-only">
|
<DialogHeader class="sr-only">
|
||||||
<DialogTitle>{{ worldDialog.ref?.name || t('dialog.world.info.header') }}</DialogTitle>
|
<DialogTitle>{{ worldDialog.ref?.name || t('dialog.world.info.header') }}</DialogTitle>
|
||||||
<DialogDescription>
|
<DialogDescription>
|
||||||
|
|||||||
Reference in New Issue
Block a user