Skip to content

Commit

Permalink
Add upper boundary to modal width
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche committed Dec 13, 2024
1 parent 76aa81f commit 74e5db7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/Modals/CreateModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
export let suggestions: { [key: string]: any } = {};
// Base Classes
const cBase = 'card p-4 w-fit min-w-modal shadow-xl space-y-4';
const cBase = 'card p-4 w-fit max-w-4xl shadow-xl space-y-4';
const cHeader = 'text-2xl font-bold';
export let debug = false;
Expand Down

0 comments on commit 74e5db7

Please sign in to comment.