2022-02-02 13:44:33 +01:00
|
|
|
.swipeable-drawer__header {
|
|
|
|
position: absolute;
|
|
|
|
visibility: visible;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2022-02-11 19:50:55 +01:00
|
|
|
-webkit-backdrop-filter: blur(4px);
|
|
|
|
backdrop-filter: blur(4px);
|
|
|
|
background-color: var(--mui-background);
|
|
|
|
border-top: 1px solid var(--color-border);
|
2022-04-04 14:13:15 +02:00
|
|
|
border-top-left-radius: 12px;
|
|
|
|
border-top-right-radius: 12px;
|
2022-02-02 13:44:33 +01:00
|
|
|
|
|
|
|
.button--close {
|
|
|
|
top: 2px !important;
|
|
|
|
right: 2px !important;
|
|
|
|
}
|
2022-02-02 13:48:24 +01:00
|
|
|
|
2022-02-07 14:04:25 +01:00
|
|
|
span,
|
|
|
|
svg {
|
2022-02-02 13:48:24 +01:00
|
|
|
color: var(--color-text);
|
|
|
|
}
|
2022-02-02 13:44:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.swipeable-drawer__puller {
|
|
|
|
width: 30px;
|
|
|
|
height: 6px;
|
|
|
|
border-radius: 3px;
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
left: calc(50% - 15px);
|
|
|
|
}
|
|
|
|
|
2022-04-04 14:13:15 +02:00
|
|
|
.MuiDrawer-root > .MuiPaper-root {
|
|
|
|
overflow: visible;
|
|
|
|
color: var(--color-text);
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2022-02-02 13:45:16 +01:00
|
|
|
.swipeable-drawer__header-content {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: var(--spacing-s) var(--spacing-xxs);
|
2022-02-11 19:50:55 +01:00
|
|
|
padding-bottom: var(--spacing-xxxs);
|
|
|
|
//padding-top:var(--spacing-xxxs);
|
2022-02-02 13:45:16 +01:00
|
|
|
font-size: var(--font-small);
|
|
|
|
}
|
|
|
|
|
2022-02-07 14:04:25 +01:00
|
|
|
.swipeable-drawer__header--with-subtitle {
|
|
|
|
padding: var(--spacing-xxs);
|
2022-02-11 19:50:55 +01:00
|
|
|
padding-top: 4px;
|
2022-02-07 14:04:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.swipeable-drawer__menu {
|
2022-02-02 13:45:16 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
margin-left: var(--spacing-xxs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-07 14:04:25 +01:00
|
|
|
.swipeable-drawer__title-menu {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
.swipeable-drawer__title {
|
|
|
|
font-size: var(--font-xsmall);
|
|
|
|
}
|
|
|
|
|
|
|
|
.swipeable-drawer__subtitle {
|
|
|
|
font-size: var(--font-xxsmall);
|
|
|
|
color: var(--color-text-subtitle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-02 13:45:16 +01:00
|
|
|
.swipeable-drawer__header-actions {
|
|
|
|
display: flex;
|
|
|
|
|
2022-02-02 13:48:24 +01:00
|
|
|
button {
|
|
|
|
padding: 0.3rem;
|
|
|
|
}
|
|
|
|
|
2022-02-02 13:45:16 +01:00
|
|
|
button:not(:last-child) {
|
|
|
|
margin-right: var(--spacing-xxs);
|
|
|
|
}
|
2022-02-11 19:50:55 +01:00
|
|
|
|
|
|
|
.menu__button {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2022-02-02 13:45:16 +01:00
|
|
|
}
|
|
|
|
|
2022-02-02 13:44:33 +01:00
|
|
|
.swipeable-drawer__expand-button {
|
|
|
|
width: 100%;
|
|
|
|
margin: var(--spacing-xxs) 0;
|
2022-02-02 13:48:24 +01:00
|
|
|
border-radius: 0 !important;
|
2022-02-14 14:09:40 +01:00
|
|
|
&.button--primary {
|
|
|
|
padding-left: var(--spacing-xxs);
|
|
|
|
// border-top:1px solid var(--color-border);
|
|
|
|
// border-bottom:1px solid var(--color-border);
|
|
|
|
background-color: var(--color-header-background) !important;
|
|
|
|
.button__content {
|
|
|
|
.icon {
|
|
|
|
stroke: var(--color-text);
|
|
|
|
}
|
|
|
|
.button__label {
|
|
|
|
color: var(--color-text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-02 13:44:33 +01:00
|
|
|
}
|