removed toolbar in zen mode, fixed not all notes visible in mobile

This commit is contained in:
Gamosoft 2025-12-21 12:56:02 +01:00
parent 1450a55683
commit 61289be860
1 changed files with 8 additions and 1 deletions

View File

@ -1043,6 +1043,7 @@
left: -100%; left: -100%;
top: 0; top: 0;
height: 100vh; height: 100vh;
height: 100dvh; /* Dynamic viewport height for iOS Safari */
width: 80% !important; width: 80% !important;
max-width: 300px !important; max-width: 300px !important;
z-index: 1000; z-index: 1000;
@ -1054,6 +1055,12 @@
left: 0; left: 0;
} }
/* Add bottom padding to scrollable sidebar content for tab bar */
.mobile-sidebar .overflow-y-auto {
padding-bottom: 70px !important;
padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
}
/* Mobile overlay */ /* Mobile overlay */
.mobile-overlay { .mobile-overlay {
position: fixed; position: fixed;
@ -2733,7 +2740,7 @@
</div> </div>
<!-- Mobile Bottom Tabs --> <!-- Mobile Bottom Tabs -->
<nav class="mobile-bottom-tabs" style="display: none;" role="navigation" aria-label="Main navigation"> <nav class="mobile-bottom-tabs zen-hide" style="display: none;" role="navigation" aria-label="Main navigation">
<button <button
class="mobile-bottom-tab" class="mobile-bottom-tab"
:class="{'active': activePanel === 'files'}" :class="{'active': activePanel === 'files'}"