Fix threatre mode not hiding left nav correctly

This commit is contained in:
WardPearce
2026-03-09 00:19:13 +13:00
parent 3cc058eaf4
commit 2bdd39475d
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -162,7 +162,7 @@
id="left-nav"
class="left m l surface-container"
class:tv-nav={$isAndroidTvStore}
class:hide={$playerTheatreModeIsActive}
class:hide-element={$playerTheatreModeIsActive}
>
<header class="small-padding">
<a href={resolve($interfaceDefaultPage, {})} tabindex="-1" data-sveltekit-preload-data="off">
@@ -425,6 +425,10 @@
</dialog>
<style>
.hide-element {
display: none;
}
.tv-nav {
min-inline-size: 0.5rem;
padding: 0;
File diff suppressed because one or more lines are too long