style(calendar): reduce toolbar spacing slightly (150px → 140px)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2025-12-13 13:56:18 +01:00
parent ef69274cb0
commit 5ebdc35204
3 changed files with 4 additions and 4 deletions

View file

@ -107,7 +107,7 @@
/* When expanded, move FAB up with InputBar */
.fab-container.expanded {
bottom: calc(150px + 9px + env(safe-area-inset-bottom, 0px));
bottom: calc(140px + 9px + env(safe-area-inset-bottom, 0px));
}
.fab-container.sidebar-mode {

View file

@ -305,7 +305,7 @@
/* When toolbar is expanded, push DateStrip up */
.date-strip-wrapper.toolbar-expanded {
bottom: calc(220px + env(safe-area-inset-bottom, 0px)); /* Extra space for toolbar */
bottom: calc(210px + env(safe-area-inset-bottom, 0px)); /* Extra space for toolbar */
}
/* When PillNav is in sidebar mode, no PillNav at bottom - just InputBar */
@ -314,7 +314,7 @@
}
.date-strip-wrapper.sidebar-mode.toolbar-expanded {
bottom: calc(150px + env(safe-area-inset-bottom, 0px));
bottom: calc(140px + env(safe-area-inset-bottom, 0px));
}
.today-button {

View file

@ -413,7 +413,7 @@
bottomOffset={isSidebarMode
? '0px'
: showCalendarToolbar && !isToolbarCollapsed
? '150px'
? '140px'
: '70px'}
/>
</div>