feat: reorganize repo

This commit is contained in:
taskylizard 2024-08-03 10:38:06 +00:00
parent 49eb39bc1f
commit 23389c69df
No known key found for this signature in database
GPG key ID: 1820131ED1A24120
107 changed files with 15 additions and 429 deletions

View file

@ -0,0 +1,16 @@
<script setup lang="ts">
import Switch from './Switch.vue'
const toggleStarred = () =>
document.documentElement.classList.toggle('starred-only')
</script>
<template>
<Switch @click="toggleStarred()" />
</template>
<style>
.starred-only li:not(.starred) {
display: none;
}
</style>