mirror of
https://github.com/moghtech/komodo.git
synced 2026-04-28 19:59:46 -05:00
better responsive confirm save width
This commit is contained in:
@@ -56,7 +56,17 @@ export default function ConfirmUpdate<T>({
|
||||
return (
|
||||
<>
|
||||
<Modal title="Confirm Update" opened={opened} onClose={close} size="auto">
|
||||
<Stack gap="xl" w={1400} maw="95vw" my="lg">
|
||||
<Stack
|
||||
gap="xl"
|
||||
w={1400}
|
||||
maw={{
|
||||
base: "calc(100vw - 100px)",
|
||||
xs: "calc(100vw - 150px)",
|
||||
sm: "calc(100vw - 200px)",
|
||||
md: "calc(100vw - 250px)",
|
||||
}}
|
||||
my="lg"
|
||||
>
|
||||
<Stack>
|
||||
{Object.entries(content).map(([key, val], i) => (
|
||||
<ConfirmUpdateItem
|
||||
|
||||
Reference in New Issue
Block a user