Files
web/packages/design-system/lib/components/RateCard/Modal/modal.module.css
Bianca Widstam 873174dcc3 Merged in feat/BOOK-119-accessibility-replace-radiogroup (pull request #3081)
feat(BOOK-119): replace radio group on select rate with buttons and make them accessible

* feat(BOOK-119): replace radio group on select rate with buttons and make them accessible

* feat(BOOK-119): update roomNR

* feat(BOOK-119): update onpress and buttonOverlay name change


Approved-by: Erik Tiekstra
2025-11-06 11:46:59 +00:00

75 lines
1.3 KiB
CSS

.overlay {
background: rgba(0, 0, 0, 0.5);
height: var(--visual-viewport-height);
position: fixed;
top: 0;
left: 0;
width: 100vw;
z-index: 100;
}
.modal {
background-color: var(--Neutral-0);
border-radius: var(--Corner-radius-md) var(--Corner-radius-md) 0 0;
box-shadow: 0px 4px 24px 0px rgba(38, 32, 30, 0.08);
width: 100%;
position: absolute;
left: 0;
bottom: 0;
z-index: 101;
}
.dialog {
display: flex;
flex-direction: column;
/* For removing focus outline when modal opens first time */
outline: 0 none;
/* for supporting animations within content */
position: relative;
overflow: hidden;
max-height: 100dvh;
}
.header {
box-sizing: content-box;
display: flex;
align-items: flex-start;
gap: var(--Space-x3);
justify-content: space-between;
min-height: min-content;
position: relative;
padding: var(--Space-x3) var(--Space-x3) 0;
}
.content {
display: flex;
flex-direction: column;
/* align-items: center; */
gap: var(--Space-x2);
overflow: auto;
padding: var(--Space-x3);
}
@media screen and (min-width: 768px) {
.overlay {
display: flex;
justify-content: center;
align-items: center;
}
.modal {
left: auto;
bottom: auto;
width: auto;
border-radius: var(--Corner-radius-md);
max-width: var(--max-width-page);
}
.dialog {
max-height: 90dvh;
}
}