more minor results page styling

The trick was setting flex-direction to row-reverse, which makes the
option names hug their 1st, 2nd etc while still overflowing nicely and
sitting in the center of the page.
This commit is contained in:
Jack Wines 2023-06-17 01:09:36 -07:00
parent 1a61d4aa3c
commit 7429c445a2

View file

@ -18,16 +18,15 @@ body {
#results {
display: grid;
grid-template-columns: auto 30%;
grid-template-columns: auto 3em;
column-gap: 7px;
row-gap: 5px;
}
#results > div {
display: flex;
flex-direction: row;
flex-direction: row-reverse;
flex-wrap: wrap;
min-width: 10em;
gap: 7px;
}