mirror of
https://github.com/thiloho/aurora.git
synced 2025-11-22 11:31:36 +01:00
Align checkboxes to middle
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
</svg>
|
||||
<div class="theme-toggle">
|
||||
{#each themeOptions as option, index}
|
||||
<div>
|
||||
<div class="input-wrapper">
|
||||
<input type="radio" id="theme-{option}" name="theme" value={option} bind:group={theme} on:change={saveTheme} />
|
||||
<label for="theme-{option}">{option}</label>
|
||||
</div>
|
||||
@@ -44,4 +44,14 @@
|
||||
display: grid;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
input {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.input-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user