Show mail domain change progress

This commit is contained in:
Johannes Zellner
2025-03-10 11:18:40 +01:00
parent e36f24dc63
commit 2aed64d1c1
3 changed files with 59 additions and 12 deletions

View File

@@ -3,23 +3,31 @@
<template>
<div class="settings-item">
<slot></slot>
<div class="settings-item-body">
<slot></slot>
</div>
<div class="setting-item-bottom">
<slot name="bottom"></slot>
</div>
</div>
</template>
<style>
.settings-item {
display: flex;
justify-content: space-between;
border-radius: var(--pankow-border-radius);
padding: 10px;
margin-bottom: 10px;
}
.settings-item-body {
display: flex;
justify-content: space-between;
gap: 20px;
}
@media (max-width: 576px) {
.settings-item {
.settings-item-body {
flex-wrap: wrap;
}
}
@@ -32,4 +40,9 @@
margin-top: 0;
}
.setting-item-bottom {
width: 100%;
margin-top: 10px;
}
</style>