1
0
resumarkdown/src/lib/components/nav-tree.svelte

15 lines
182 B
Svelte
Raw Normal View History

2024-10-11 00:23:32 -05:00
<nav>
<ul>
<slot />
</ul>
</nav>
<style lang="less">
ul {
border-bottom: 2px solid @color-dark;
list-style-type: none;
margin: 0;
padding: 0;
}
</style>