Feat/SW-999 visual fixes in enter details * fix(SW-999): accordion title font sizes fix and alignment of change room button * fix(SW-999): added scroll if content cannot fit inside popover Approved-by: Christel Westerberg
29 lines
536 B
CSS
29 lines
536 B
CSS
.root {
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.1);
|
|
padding: var(--Spacing-x2);
|
|
max-width: calc(360px + var(--Spacing-x2) * 2);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.root section:focus-visible {
|
|
outline: none;
|
|
}
|
|
|
|
.trigger {
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
}
|
|
.closeButton {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 8px;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
}
|