mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-20 14:22:09 +00:00
fix: settings not being clickable
This commit is contained in:
parent
3185644a6a
commit
c70f55a94b
2 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Miru",
|
||||
"version": "4.3.2",
|
||||
"version": "4.3.3",
|
||||
"author": "ThaUnknown_ <ThaUnknown@users.noreply.github.com>",
|
||||
"description": "Stream anime torrents, real-time with no waiting for downloads.",
|
||||
"main": "build/main.js",
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
export let page = 'home'
|
||||
</script>
|
||||
|
||||
<div class='wrapper h-full position-absolute overflow-hidden'>
|
||||
<Miniplayer active={page !== 'player'} class='bg-dark-light z-10 {page === 'player' ? 'h-full' : ''}' minwidth='35rem' maxwidth='60rem' width='300px' padding='2rem'>
|
||||
<div class='wrapper h-full position-absolute overflow-hidden pointer-events-none'>
|
||||
<Miniplayer active={page !== 'player'} class='bg-dark-light z-10 pointer-events-auto {page === 'player' ? 'h-full' : ''}' minwidth='35rem' maxwidth='60rem' width='300px' padding='2rem'>
|
||||
<MediaHandler miniplayer={page !== 'player'} bind:page />
|
||||
</Miniplayer>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue