11 lines
274 B
CSS
11 lines
274 B
CSS
|
.modal-mask {
|
||
|
@apply .fixed .pin .z-50 .overflow-auto .flex;
|
||
|
background: rgba(0, 0, 0, 0.7);
|
||
|
transition: opacity 250ms ease;
|
||
|
|
||
|
& > .modal-container {
|
||
|
@apply .relative .p-8 .bg-white .w-full .max-w-md .m-auto .flex-col .flex;
|
||
|
transition: all 250ms ease;
|
||
|
}
|
||
|
}
|