This commit is contained in:
nasir@endelospay.com 2024-06-07 02:12:33 +05:00
parent ac6640ba0e
commit bff5e31c09
2 changed files with 6 additions and 3 deletions

View File

@ -272,4 +272,7 @@ const hideTitleAndIcon = configStore.isVerticalNavMini(isHovered)
.v-icon { .v-icon {
margin-right: 8px; /* Adds space between the icon and the text */ margin-right: 8px; /* Adds space between the icon and the text */
} }
.list-item-reset a {
color: rgb(46,38,61) !important;
}
</style> </style>

View File

@ -10,8 +10,8 @@
:class="itemIconClass(item)" :class="itemIconClass(item)"
/> />
<VBtn v-bind="props" block variant="text" <VBtn v-bind="props" block variant="text"
color="secondary"> color="rgb(46,38,61)">
<VIcon v-if="item.icon" :icon="item.icon.icon" class="mr-2" />{{ item.title }} <VIcon v-if="item.icon" :icon="item.icon.icon" class="mr-2" size="20"/>{{ item.title }}
</VBtn> </VBtn>
</template> </template>
@ -90,7 +90,7 @@ const itemIconClass = (item) => {
position: fixed; position: fixed;
width: 100%; width: 100%;
bottom: 20px; bottom: 20px;
padding-left: 16px; padding-inline: 18px;
} }