refactor: remove HeaderBar component

This commit is contained in:
Sebin Nyshkim 2022-09-29 02:18:19 +02:00
parent 9fe918136c
commit c68c432c8f
2 changed files with 1 additions and 53 deletions

View file

@ -1,30 +0,0 @@
<template>
<header class="header-bar">
<slot></slot>
<h1 class="header-bar__title">
<slot name="heading"></slot>
</h1>
</header>
</template>
<style lang="scss">
.header-bar {
display: flex;
flex-flow: row nowrap;
justify-content: stretch;
align-items: center;
position: sticky;
top: 0;
z-index: 1;
background-color: var(--color-header-bar);
backdrop-filter: blur(0.5rem);
&__title {
color: var(--color-header-bar-title);
margin: 0;
}
}
</style>