diff --git a/src/components/TheSidebar.vue b/src/components/TheSidebar.vue
index 35e34eb..fe324bd 100644
--- a/src/components/TheSidebar.vue
+++ b/src/components/TheSidebar.vue
@@ -1,22 +1,22 @@
- .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"
+ )