Replaced profile pill bar with portal page.

This commit is contained in:
2026-07-18 03:20:50 +02:00
parent 981205efaa
commit 7c6bde690f
9 changed files with 304 additions and 114 deletions

View File

@@ -0,0 +1,29 @@
<script setup>
import { ref } from 'vue';
// import Checkbox from '#/components/form/checkbox.vue';
</script>
<template>
<div class="dialog-section">
<div class="setting">
Combine e-mail alerts
<select
class="input"
>
<option>Never</option>
<option>Daily</option>
<option>Weekly</option>
<option>Monthly</option>
</select>
</div>
</div>
</template>
<style scoped>
.setting {
display: flex;
justify-content: space-between;
align-items: center;
}
</style>