slightly improve writing and blog styling

This commit is contained in:
Zoe
2024-04-27 02:44:21 -05:00
parent 3f8e72f855
commit 3dc3da1bf2
6 changed files with 37 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
<template>
<ul>
<slot />
</ul>
</template>
<style scoped>
:slotted(li) {
position: relative;
padding-left: 20px;
}
:slotted(li)::before {
content: "•";
position: absolute;
left: 0;
}
</style>