mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
feat(ui): transparent status bar
This commit is contained in:
parent
b64d1add86
commit
4da2fd05bb
2 changed files with 7 additions and 3 deletions
|
@ -8,10 +8,11 @@ defineProps<{
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<div relative>
|
||||
<div>
|
||||
<div
|
||||
sticky top-0 z10
|
||||
border="b base" bg="[rgba(var(--c-bg-base-rgb),0.7)]" backdrop-blur
|
||||
sticky top-0 z10 backdrop-blur
|
||||
pt="[env(safe-area-inset-top,0)]"
|
||||
border="b base" bg="[rgba(var(--c-bg-base-rgb),0.7)]"
|
||||
>
|
||||
<div flex justify-between px5 py4>
|
||||
<div flex gap-3 items-center overflow-hidden>
|
||||
|
|
|
@ -44,5 +44,8 @@ export function setupPageHeader() {
|
|||
},
|
||||
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
||||
link,
|
||||
meta: [
|
||||
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' },
|
||||
],
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue