29 lines
520 B
CSS
29 lines
520 B
CSS
.root {
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
border-radius: var(--Corner-radius-md);
|
|
box-shadow: var(--popup-box-shadow);
|
|
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;
|
|
}
|