Skip to content

Commit

Permalink
Fix: correct small size to 500px (#881)
Browse files Browse the repository at this point in the history
  • Loading branch information
nielslyngsoe authored Aug 28, 2024
1 parent 5509b34 commit 052b277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/uui-modal/lib/uui-modal-sidebar.element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class UUIModalSidebarElement extends UUIModalElement {
max-width: min(800px, calc(100% - var(--uui-modal-sidebar-left-gap)));
}
:host([size='small']) dialog {
max-width: min(400px, calc(100% - var(--uui-modal-sidebar-left-gap)));
max-width: min(500px, calc(100% - var(--uui-modal-sidebar-left-gap)));
}
`,
];
Expand Down

0 comments on commit 052b277

Please sign in to comment.