16 lines
575 B
Plaintext
16 lines
575 B
Plaintext
.header-wrapper {
|
|
@apply fixed sm:sticky top-0 z-30 sm:z-0 -translate-x-64 sm:translate-x-0 sm:flex flex-col justify-start items-start w-56 h-full py-4 pl-2 bg-white dark:bg-zinc-800 sm:bg-transparent overflow-x-hidden overflow-y-auto transition-transform duration-300 overscroll-contain hide-scrollbar;
|
|
|
|
&.show {
|
|
@apply translate-x-0 shadow-2xl sm:shadow-none;
|
|
}
|
|
}
|
|
|
|
.mask {
|
|
@apply fixed top-0 left-0 w-full h-full bg-black opacity-0 transition-opacity duration-300 pointer-events-none z-20 sm:hidden;
|
|
|
|
&.show {
|
|
@apply opacity-60 pointer-events-auto;
|
|
}
|
|
}
|