## 事象
[[shadcn-vue]]のDialogコンポーネントでwidthが一定サイズ以上に伸びない。`AlertDialogContent` には `max-w-full` を指定している。
```html
<script setup lang="ts">
import {
AlertDialog,
AlertDialogTrigger,
AlertDialogContent,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogDescription,
} from "./components/ui/alert-dialog";
import { Button } from "./components/ui/button";
</script>
<template>
<div class="flex min-h-screen items-center justify-center">
<AlertDialog>
<AlertDialogTrigger><Button>Show dialog</Button></AlertDialogTrigger>
<AlertDialogContent class="max-w-full">
<AlertDialogHeader>
<AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle>
<AlertDialogDescription>
This action cannot be undone. This will permanently delete your
account and remove your data from our servers.
</AlertDialogDescription>
</AlertDialogHeader>
</AlertDialogContent>
</AlertDialog>
</div>
</template>
```
ダイアログは以下のように表示される。
![[2025-11-11-06-11-43.avif]]
### 環境
| 対象 | バージョン |
| ---------------- | ------ |
| [[shadcn-vue]] | 2.3.2 |
| [[Reka UI]] | 2.6.0 |
| [[Tailwind CSS]] | 4.1.17 |
## 原因
`AlertDialogContent.vue` の `AlertDialogContent` には以下2つのクラスが指定されている。
- `max-w-[calc(100%-2rem)]`
- `sm:max-w-lg`
```html
<template>
<AlertDialogPortal>
<AlertDialogOverlay
data-slot="alert-dialog-overlay"
class="data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80"
/>
<AlertDialogContent
data-slot="alert-dialog-content"
v-bind="forwarded"
:class="
cn(
'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg',
props.class,
)
"
>
<slot />
</AlertDialogContent>
</AlertDialogPortal>
</template>
```
[[ブレークポイントプレフィックス (Tailwind CSS)|ブレークポイントプレフィックス]]がついているため、`max-w-full` だけを指定しても、640px未満の場合でしか反映されない。
## 解決方法
`sm:max-w-full` もあわせて指定する。
```diff
<template>
<div class="flex min-h-screen items-center justify-center">
<AlertDialog>
<AlertDialogTrigger><Button>Show dialog</Button></AlertDialogTrigger>
- <AlertDialogContent class="max-w-full">
+ <AlertDialogContent class="max-w-full sm:max-w-full">
<AlertDialogHeader>
```