Skip to content

Commit 052b277

Browse files
authored
Fix: correct small size to 500px (#881)
1 parent 5509b34 commit 052b277

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/uui-modal/lib/uui-modal-sidebar.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export class UUIModalSidebarElement extends UUIModalElement {
104104
max-width: min(800px, calc(100% - var(--uui-modal-sidebar-left-gap)));
105105
}
106106
:host([size='small']) dialog {
107-
max-width: min(400px, calc(100% - var(--uui-modal-sidebar-left-gap)));
107+
max-width: min(500px, calc(100% - var(--uui-modal-sidebar-left-gap)));
108108
}
109109
`,
110110
];

0 commit comments

Comments
 (0)