modified: main_dc/BB/bbvue/src/App.vue

add comments
This commit is contained in:
valitovgaziz
2025-11-23 15:51:44 +05:00
parent eb601a1cf1
commit d0d6ca63ed
+8 -6
View File
@@ -47,7 +47,7 @@
<script> <script>
import NavigationMenu from './components/NavigationMenu.vue' import NavigationMenu from './components/NavigationMenu.vue'
import { useAuthStore } from '@/src/stores/auth' // Добавлен импорт import { useAuthStore } from '@/src/stores/auth' // Добавлен импорт
export default { export default {
@@ -211,8 +211,10 @@ body {
.footer-grid { .footer-grid {
display: grid; display: grid;
grid-template-columns: 1fr 1fr; /* Две равные колонки */ grid-template-columns: 1fr 1fr;
gap: 2rem; /* Расстояние между колонками */ /* Две равные колонки */
gap: 2rem;
/* Расстояние между колонками */
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
padding: 0 20px; padding: 0 20px;
@@ -246,15 +248,15 @@ body {
.container { .container {
padding: 0 15px; padding: 0 15px;
} }
.footer-grid { .footer-grid {
grid-template-columns: 1fr; grid-template-columns: 1fr;
/* Одна колонка на мобильных */ /* Одна колонка на мобильных */
gap: 1rem; gap: 1rem;
} }
} }
@media (max-width: 360px) { @media (max-width: 360px) {
.logo-box:nth-child(2) { .logo-box:nth-child(2) {
display: none; display: none;
} }