Add iCal download for calendar integration #43

Merged
nitrix merged 7 commits from 019-ical-download into master 2026-03-14 11:40:43 +01:00
Showing only changes of commit 7817ad182b - Show all commits

View File

@@ -2,6 +2,7 @@
<div class="app-container"> <div class="app-container">
<header v-if="route.name !== 'home'" class="app-header"> <header v-if="route.name !== 'home'" class="app-header">
<BackLink /> <BackLink />
<div id="header-actions"></div>
</header> </header>
<RouterView /> <RouterView />
</div> </div>
@@ -16,11 +17,19 @@ const route = useRoute()
<style scoped> <style scoped>
.app-header { .app-header {
position: absolute; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
right: 0; right: 0;
z-index: 10; z-index: 100;
padding-top: var(--spacing-lg); display: flex;
align-items: center;
justify-content: space-between;
padding: var(--spacing-lg) var(--content-padding);
pointer-events: none;
}
.app-header :deep(*) {
pointer-events: auto;
} }
</style> </style>