71 lines
1.2 KiB
CSS
71 lines
1.2 KiB
CSS
.backWrapper {
|
|
background-color: var(--Base-Surface-Secondary-light-Normal);
|
|
padding: var(--Spacing-x2);
|
|
}
|
|
|
|
.backButton {
|
|
background-color: transparent;
|
|
border: none;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.closeWrapper {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: var(--Spacing-x2);
|
|
border-bottom: 1px solid var(--Base-Border-Subtle);
|
|
}
|
|
|
|
.closeButton {
|
|
background-color: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
justify-self: flex-start;
|
|
padding: 11px var(--Spacing-x1) var(--Spacing-x2);
|
|
user-select: none;
|
|
}
|
|
|
|
.bar,
|
|
.bar::after,
|
|
.bar::before {
|
|
background: var(--Base-Text-High-contrast);
|
|
border-radius: 2.3px;
|
|
display: inline-block;
|
|
height: 3px;
|
|
position: relative;
|
|
transition: all 0.3s;
|
|
width: var(--Spacing-x4);
|
|
}
|
|
|
|
.bar::after,
|
|
.bar::before {
|
|
content: "";
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
transform-origin: 50% 50%;
|
|
width: var(--Spacing-x4);
|
|
}
|
|
|
|
.bar {
|
|
background: transparent;
|
|
}
|
|
|
|
.bar::after {
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
.bar::before {
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.closeWrapper {
|
|
display: none;
|
|
}
|
|
}
|