25 lines
389 B
Vue
25 lines
389 B
Vue
<script setup>
|
|
import {ref, onMounted} from 'vue'
|
|
onMounted(() => {})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="logo flex column j-s">
|
|
<img class="logo-img" src="/static/images/footer/logo.png" />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.logo {
|
|
width: 100%;
|
|
height: 100%;
|
|
text-align: center;
|
|
color: $white;
|
|
|
|
.logo-img {
|
|
width: 140px;
|
|
height: 209px;
|
|
}
|
|
}
|
|
</style>
|