This commit is contained in:
Florian Hoss 2023-07-04 11:51:13 +02:00
commit f90fdc0598
99 changed files with 15260 additions and 0 deletions

View file

@ -0,0 +1,33 @@
<template>
<div class="fixed-bottom">
<div class="flex justify-content-between align-items-center border-round-xs py-2 px-3 bg-color shadow-1">
<div><slot name="left"></slot></div>
<div><slot name="middle"></slot></div>
<div><slot name="right"></slot></div>
</div>
</div>
</template>
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
name: "BottomNavigation",
setup() {
return {};
},
});
</script>
<style scoped>
.fixed-bottom {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
.bg-color {
background-color: var(--surface-a);
color: var(--text-color);
}
</style>