feat: reintroduce header and footer components
This commit is contained in:
parent
f92043e106
commit
3eddad19c9
2 changed files with 87 additions and 0 deletions
22
src/components/Footer.vue
Normal file
22
src/components/Footer.vue
Normal file
|
@ -0,0 +1,22 @@
|
|||
<template>
|
||||
<footer class="footer">
|
||||
<slot></slot>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
<script></script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@/scss/_variables.scss";
|
||||
@import "@/scss/_mixins.scss";
|
||||
|
||||
.footer {
|
||||
background: url("/subtle-prism.svg") $bg-color-dark;
|
||||
background-blend-mode: multiply;
|
||||
|
||||
padding: max(1em, env(safe-area-inset-top)) 0
|
||||
max(1em, env(safe-area-inset-bottom)) 0;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue