Feat/BOOK-529 update GLA design mystay * feat(BOOK-529): update gla design on my stay * feat(BOOK-529): open gla modal if error * feat(BOOK-529): add inline accordion to storybook * feat(529): move errormessage below message * feat(529): update infomodal * feat(BOOK-529): update infomodal * feat(BOOK-529): hide guarantee info for adding ancillaries if prepaid * feat(BOOK-529): update width on info dialog * feat(BOOK-529): fix alignment * feat(BOOK-529): check if member price * feat(BOOK-529): refactor msg * feat(BOOK-529): refactor terms and conditions to own component * feat(BOOK-529): clean up confirmation step Approved-by: Christel Westerberg
35 lines
530 B
CSS
35 lines
530 B
CSS
.content {
|
|
display: grid;
|
|
gap: var(--Space-x3);
|
|
align-content: start;
|
|
margin-top: var(--Space-x2);
|
|
}
|
|
|
|
.infoButton {
|
|
background-color: transparent;
|
|
border-width: 0;
|
|
padding: var(--Space-x025);
|
|
color: var(--Icon-Interactive-Default);
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.closeButton {
|
|
justify-self: stretch;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.content {
|
|
max-width: 512px;
|
|
}
|
|
|
|
.closeButton {
|
|
justify-self: end;
|
|
min-width: 150px;
|
|
}
|
|
}
|
|
|
|
.textSecondary {
|
|
color: var(--Text-Secondary);
|
|
}
|