Default Comment Sort Setting

This commit is contained in:
spikecodes 2021-01-07 08:38:05 -08:00
parent 7e96bb3d80
commit 3444989f9a
13 changed files with 77 additions and 42 deletions

View file

@ -622,6 +622,7 @@ input[type="submit"]:hover { color: var(--accent); }
#prefs {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 20px;
@ -629,8 +630,20 @@ input[type="submit"]:hover { color: var(--accent); }
border-radius: 5px;
}
#prefs > select {
#prefs > div {
display: flex;
justify-content: space-between;
width: 100%;
align-items: center;
}
#prefs > div:not(:last-of-type) {
margin-bottom: 10px;
}
#prefs select {
border-radius: 5px;
box-shadow: var(--shadow);
margin-left: 20px;
}