fix sidebar styles

This commit is contained in:
dderbentsov
2023-10-20 00:25:55 +03:00
parent 516ec12114
commit e9929481b3

View File

@@ -1,22 +1,22 @@
<template lang="pug">
.sidebar.flex.flex-col.justify-between.pt-4.px-2.pb-7.rounded
.flex.flex-col.gap-y-4
base-button-sidebar(
v-for="button in pageSettings.filter((el) => el.id !== 'settings')",
:path="button.path",
:id="button.id",
:active="button.active",
:change-style-page="changeStylePage",
:icon="button.icon"
)
.flex.text-4xl.flex-col.gap-y-6
base-button-sidebar(
:path="getSettings.path",
:id="getSettings.id",
:active="getSettings.active",
:change-style-page="changeStylePage",
:icon="getSettings.icon"
)
.sidebar.flex.flex-col.justify-between.py-4.rounded.items-center
.flex.flex-col.gap-y-4
base-button-sidebar(
v-for="button in pageSettings.filter((el) => el.id !== 'settings')",
:path="button.path",
:id="button.id",
:active="button.active",
:change-style-page="changeStylePage",
:icon="button.icon"
)
.flex.text-4xl.flex-col.gap-y-6
base-button-sidebar(
:path="getSettings.path",
:id="getSettings.id",
:active="getSettings.active",
:change-style-page="changeStylePage",
:icon="getSettings.icon"
)
</template>
<script>