Files
AstralRinth/packages/ui/src/components/nav/NavStack.vue
2024-07-04 21:46:29 -07:00

23 lines
343 B
Vue

<template>
<div class="omorphia__navstack">
<slot />
</div>
</template>
<style lang="scss" scoped>
.omorphia__navstack {
display: flex;
flex-direction: column;
:deep(.btn) {
position: relative;
width: 100%;
&.selected {
background-color: var(--color-button-bg);
font-weight: bold;
}
}
}
</style>