changed template mobile, separation his on components header and menu

This commit is contained in:
Kostya
2023-12-14 21:06:51 +03:00
parent 51656e5479
commit e856182e63
6 changed files with 178 additions and 148 deletions

View File

@@ -0,0 +1,32 @@
<template>
<footer class="footer-mobile">
<div class="footer-mobile__content">
<div class="footer-mobile__block chat-icon">
<a href="#">
<img src="@/assets/icons-adaptive/home-adaptive/icon-chat.svg">
</a>
</div>
<div class="footer-mobile__block home-icon">
<a href="#" @click="$router.push({ name: 'home' })">
<img src="@/assets/icons-adaptive/home-adaptive/icon-home.svg">
</a>
</div>
<div class="footer-mobile__block settings-icon">
<a href="#">
<img width="" src="@/assets/icons-adaptive/home-adaptive/icon-settings.png">
</a>
</div>
</div>
</footer>
</template>
<script>
import '@/assets/css/ComponentsStyles/AdaptiveStyles/menumobile.css'
export default {
}
</script>
<style scoped>
</style>