Files
sb-front/src/components/layout/AppFooter.vue
T

22 lines
432 B
Vue
Raw Normal View History

<script setup></script>
<template>
<footer class="app-footer">
<span>© 2026 SlimBudget. All rights reserved.</span>
</footer>
</template>
<style scoped>
.app-footer {
display: flex;
align-items: center;
justify-content: center;
height: 44px;
padding: 0 1.5rem;
background: var(--color-background-soft);
border-top: 1px solid var(--color-border);
font-size: 0.85rem;
color: var(--color-text);
}
</style>