Add iCal download for calendar integration #43
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user