add initial emails view
This commit is contained in:
29
dashboard/src/components/SettingsItem.vue
Normal file
29
dashboard/src/components/SettingsItem.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<script setup>
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="settings-item">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
|
||||
.settings-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
border-radius: var(--pankow-border-radius);
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.settings-item:hover {
|
||||
background-color: var(--pankow-color-background-hover);
|
||||
}
|
||||
|
||||
.settings-item label {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user