Fix/STAY-133 * fix: Add static summary buttons row on add ancillary flow * fix: refactor handling of modals * fix: refactor file structure for add ancillary flow * Merged in chore/replace-deprecated-body (pull request #3300) Replace deprecated <Body> with <Typography> * chore: replace deprecated body component * refactor: replace Body component with Typography across various components * merge Approved-by: Bianca Widstam Approved-by: Matilda Landström Approved-by: Bianca Widstam Approved-by: Matilda Landström
26 lines
318 B
CSS
26 lines
318 B
CSS
.modal {
|
|
width: 100%;
|
|
}
|
|
|
|
.modalContent {
|
|
gap: unset;
|
|
}
|
|
|
|
.modalScrollable {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
padding: var(--Space-x2);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.modal {
|
|
width: 492px;
|
|
}
|
|
|
|
.modalScrollable {
|
|
padding: var(--Space-x3);
|
|
}
|
|
}
|