Improve panel styling for multiple themes

This commit is contained in:
charlotte ✨ 2021-07-10 17:18:17 +01:00
parent 147cc3e0fa
commit 7d0593515f
1 changed files with 13 additions and 4 deletions

View File

@ -72,10 +72,19 @@ button.copied {
color: var(--bg);
}
li {
display: flex;
flex-direction: row;
align-items: center;
#themes {
display: table;
border-spacing: 1em;
border-collapse: separate;
}
#themes li {
display: table-row;
}
#themes li > * {
display: table-cell;
vertical-align: middle;
}
#shutdown-form {