Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions SLASHED-for-WP/admin-app/src/AppOverlay.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
host.style.position = 'fixed';
host.style.right = '0';
host.style.zIndex = '100000';
host.style.pointerEvents = 'auto';

if (isOpen) {
host.style.top = adminBarHeight;
Expand Down Expand Up @@ -287,6 +288,7 @@
class="fixed right-0 z-[100000] pointer-events-auto flex flex-col bg-[#0a0a0f] text-slate-200 font-sans shadow-2xl shadow-black/60 border-l border-white/8 transition-transform duration-200 ease-in-out"
class:translate-x-full={!isOpen}
class:translate-x-0={isOpen}
style:visibility={isOpen ? undefined : 'hidden'}
style="top: var(--wp-admin--admin-bar--height, 32px); width: {isMobile ? '100vw' : '420px'}; height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));"
aria-hidden={!isOpen}
inert={!isOpen || undefined}
Expand Down
Loading