Add iCal download for calendar integration #43
@@ -2,6 +2,7 @@
|
||||
<div class="app-container">
|
||||
<header v-if="route.name !== 'home'" class="app-header">
|
||||
<BackLink />
|
||||
<div id="header-actions"></div>
|
||||
</header>
|
||||
<RouterView />
|
||||
</div>
|
||||
@@ -16,11 +17,19 @@ const route = useRoute()
|
||||
|
||||
<style scoped>
|
||||
.app-header {
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 10;
|
||||
padding-top: var(--spacing-lg);
|
||||
z-index: 100;
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user