You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
455 B
25 lines
455 B
<template> |
|
<div class="footer"> |
|
<h1>FOOTER</h1> |
|
</div> |
|
</template> |
|
|
|
<script lang="ts" setup> |
|
import {} from 'vue' |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
.footer { |
|
// position: fixed; |
|
// bottom: 0; |
|
height: 300px; |
|
width: 100%; |
|
// background-color: #252527; |
|
background: url('../../assets//images/footer.png') no-repeat; |
|
background-size: cover; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
color: #000; |
|
} |
|
</style>
|
|
|