Init
This commit is contained in:
commit
f90fdc0598
99 changed files with 15260 additions and 0 deletions
33
frontend/src/components/UI/BottomNavigation.vue
Normal file
33
frontend/src/components/UI/BottomNavigation.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue