xxxxxxxxxx
<!--
Workaround:
fixed by adding overflow-y-scroll max-h-screen classes to DialogContent
example usage:
-->
<Dialog>
<DialogTrigger asChild>
<Button variant={"ghost"} title={"Text""} />
</DialogTrigger>
<DialogContent className={"lg:max-w-screen-lg overflow-y-scroll max-h-screen"}>
todo
</DialogContent>
</Dialog>
xxxxxxxxxx
/* Global CSS file */
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
.font-outline-2 {
-webkit-text-stroke: 2px black;
}
.font-outline-4 {
-webkit-text-stroke: 4px black;
}
}