chore: update dialog overflow style (#1872)

This commit is contained in:
boojack
2023-07-01 17:37:43 +08:00
committed by GitHub
parent db8b8f0d58
commit c83fd1de38
2 changed files with 2 additions and 7 deletions

View File

@ -1,11 +1,11 @@
html,
body {
@apply text-base w-full h-full dark:bg-zinc-800;
@apply text-base w-full h-full overflow-hidden dark:bg-zinc-800;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Noto Sans",
"Noto Sans CJK SC", "Microsoft YaHei UI", "Microsoft YaHei", "WenQuanYi Micro Hei", "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}
#root {
@apply w-full h-full;
@apply w-full h-full overflow-auto;
}