This commit is contained in:
haoouba
2021-02-13 10:50:15 +08:00
parent 24f3e1dd8f
commit 0ff08cbbc0
5 changed files with 42 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -467,6 +467,22 @@
}
}
}
&__slideout {
position: fixed;
top: 0;
bottom: 0;
left: 0;
width: 70%;
z-index: 990;
background: var(--background);
transform: translate3d(-100%, 0, 0);
visibility: hidden;
transition: transform 0.35s, visibility 0.35s;
&.active {
visibility: visible;
transform: translate3d(0, 0, 0);
}
}
}
.joe_aside {