We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43d05ee commit a179decCopy full SHA for a179dec
projects/components/src/modal/modal-container.component.scss
@@ -8,14 +8,18 @@
8
padding: 18px;
9
background-color: white;
10
z-index: 1;
11
+ display: flex;
12
+ flex-direction: column;
13
14
&.modal-size-small {
15
height: 365px;
16
width: 420px;
17
}
18
- display: flex;
- flex-direction: column;
19
+ &.modal-size-medium {
20
+ height: 720px;
21
+ width: 640px;
22
+ }
23
24
.header {
25
display: flex;
projects/components/src/modal/modal.ts
@@ -10,7 +10,8 @@ export interface ModalConfig<TData = unknown> {
export const enum ModalSize {
- Small = 'small'
+ Small = 'small',
+ Medium = 'medium'
export const MODAL_DATA = new InjectionToken<unknown>('MODAL_DATA');
0 commit comments