feat: add settings page

This commit is contained in:
YunYouJun
2023-08-20 02:28:00 +08:00
parent 95ce2c4dac
commit 98123b0039
14 changed files with 1638 additions and 971 deletions

View File

@@ -0,0 +1,23 @@
<template>
<div class="ylf-form" flex="~ col">
<slot />
</div>
</template>
<style lang="scss">
.ylf-form {
background-color: var(--ylf-c-bg-alt);
border-top: 1px solid var(--ylf-c-border);
border-bottom: 1px solid var(--ylf-c-border);
margin: 10px 0;
.ylf-form-item {
border-bottom: 1px solid var(--ylf-c-border);
&:last-child {
border-bottom: none;
}
}
}
</style>