Feat(SW-1279) mystay multirum cancelling * feat(SW-1279) Cancelation text if non-user on room 2-4 * feat(SW-1279) cancel mystay multiroom * feat(SW-1279): Added cancellation for multiroom on mystay Approved-by: Niclas Edenvin
37 lines
666 B
CSS
37 lines
666 B
CSS
.content {
|
|
width: 640px;
|
|
max-width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x3);
|
|
padding: var(--Spacing-x1) var(--Spacing-x3) var(--Spacing-x4);
|
|
max-height: 70vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.header {
|
|
position: relative;
|
|
padding: var(--Spacing-x3) var(--Spacing-x3) 0;
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
border-top: 1px solid var(--Base-Border-Subtle);
|
|
padding: var(--Spacing-x3);
|
|
}
|
|
|
|
.close {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
justify-content: center;
|
|
top: 20px;
|
|
right: 20px;
|
|
}
|