fix: adapt modal header to look like design * fix: adapt modal header to look like design Approved-by: Chuma Mcphoy (We Ahead) Approved-by: Matilda Landström
20 lines
293 B
CSS
20 lines
293 B
CSS
.modalWrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: 70dvh;
|
|
width: 100%;
|
|
margin-top: var(--Space-x1);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.modalWrapper {
|
|
width: 600px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1052px) {
|
|
.modalWrapper {
|
|
width: 833px;
|
|
}
|
|
}
|