Modrinth/lib/components/nav/NavStack.vue
2023-02-18 11:43:12 -07:00

27 lines
398 B
Vue

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