mirror of
https://github.com/elk-zone/elk
synced 2024-11-23 14:46:08 +09:00
Merge branch 'main' into feat/guest
This commit is contained in:
commit
bdc045349c
@ -50,7 +50,7 @@ const showUserPicker = logicAnd(
|
||||
</slot>
|
||||
</div>
|
||||
</aside>
|
||||
<div w-full min-h-screen :class="wideLayout ? 'xl:w-full sm:w-600px' : 'sm:w-600px md:shrink-0'" border-base>
|
||||
<div w-full min-h-screen :class="isHydrated && wideLayout ? 'xl:w-full sm:w-600px' : 'sm:w-600px md:shrink-0'" border-base>
|
||||
<div min-h="[calc(100vh-3.5rem)]" sm:min-h-screen>
|
||||
<slot />
|
||||
</div>
|
||||
@ -59,7 +59,7 @@ const showUserPicker = logicAnd(
|
||||
<NavBottom v-if="isHydrated" />
|
||||
</div>
|
||||
</div>
|
||||
<aside v-if="!wideLayout" class="hidden sm:none lg:block w-1/4 zen-hide">
|
||||
<aside v-if="isHydrated && !wideLayout" class="hidden sm:none lg:block w-1/4 zen-hide">
|
||||
<div sticky top-0 h-screen flex="~ col" gap-2 py3 ms-2>
|
||||
<slot name="right">
|
||||
<div flex-auto />
|
||||
|
@ -1,9 +1,3 @@
|
||||
<script setup>
|
||||
definePageMeta({
|
||||
wideLayout: true,
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div min-h-screen flex justify-center items-center>
|
||||
<div text-center flex="~ col gap-2" items-center>
|
||||
|
@ -5,14 +5,11 @@ import { NavigationRoute, registerRoute } from 'workbox-routing'
|
||||
import { CacheableResponsePlugin } from 'workbox-cacheable-response'
|
||||
import { StaleWhileRevalidate } from 'workbox-strategies'
|
||||
import { ExpirationPlugin } from 'workbox-expiration'
|
||||
// import * as navigationPreload from 'workbox-navigation-preload'
|
||||
|
||||
import { onNotificationClick, onPush } from './web-push-notifications'
|
||||
|
||||
declare const self: ServiceWorkerGlobalScope
|
||||
|
||||
// if (import.meta.env.PROD)
|
||||
// navigationPreload.enable()
|
||||
|
||||
self.addEventListener('message', (event) => {
|
||||
if (event.data && event.data.type === 'SKIP_WAITING')
|
||||
self.skipWaiting()
|
||||
|
Loading…
Reference in New Issue
Block a user