22 lines
432 B
Vue
22 lines
432 B
Vue
|
|
<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>
|