2022-04-08 02:42:44 +00:00
|
|
|
<template>
|
2022-08-12 10:44:09 +00:00
|
|
|
<div class="footer-btns">
|
|
|
|
|
<div class="footer-btns__content">
|
|
|
|
|
<slot></slot>
|
2022-04-08 02:42:44 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
import { defineComponent } from 'vue'
|
|
|
|
|
export default defineComponent({})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2022-08-12 10:44:09 +00:00
|
|
|
.footer-btns {
|
2022-04-08 02:42:44 +00:00
|
|
|
height: 60px;
|
2022-08-12 10:44:09 +00:00
|
|
|
&__content {
|
2022-04-08 02:42:44 +00:00
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: 60px;
|
|
|
|
|
right: 0;
|
2022-08-12 10:44:09 +00:00
|
|
|
left: 0;
|
2022-04-08 02:42:44 +00:00
|
|
|
z-index: 99;
|
2022-08-12 10:44:09 +00:00
|
|
|
@apply flex justify-center items-center shadow bg-body;
|
2022-04-08 02:42:44 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|