feat(ui): refresh glass header and map bottom sheets
All checks were successful
Build Docker Image / build (push) Successful in 5m23s
All checks were successful
Build Docker Image / build (push) Successful in 5m23s
This commit is contained in:
@@ -8,7 +8,8 @@
|
||||
|
||||
<div class="flex-1 flex flex-col" :style="contentStyle">
|
||||
<!-- Fixed Header Container -->
|
||||
<div class="fixed top-0 left-0 right-0 z-40" :style="headerContainerStyle">
|
||||
<div class="liquid-header fixed top-0 left-0 right-0 z-40" :style="headerContainerStyle">
|
||||
<div class="liquid-header-backdrop" aria-hidden="true" />
|
||||
<!-- Animated background for home page -->
|
||||
<HeroBackground v-if="isHomePage" :collapse-progress="collapseProgress" />
|
||||
|
||||
@@ -357,3 +358,21 @@ const onSearch = () => {
|
||||
searchTrigger.value++
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.liquid-header {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.liquid-header-backdrop {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
height: 320%;
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
-webkit-backdrop-filter: blur(16px) saturate(180%);
|
||||
backdrop-filter: blur(16px) saturate(180%);
|
||||
-webkit-mask-image: linear-gradient(to bottom, black 0%, black 22%, rgba(0, 0, 0, 0.45) 42%, rgba(0, 0, 0, 0.12) 68%, transparent 100%);
|
||||
mask-image: linear-gradient(to bottom, black 0%, black 22%, rgba(0, 0, 0, 0.45) 42%, rgba(0, 0, 0, 0.12) 68%, transparent 100%);
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user