ui: tweaks

This commit is contained in:
cha0s 2021-01-25 23:31:00 -06:00
parent f074a719ac
commit ab5727a612
2 changed files with 13 additions and 1 deletions

View File

@ -24,7 +24,7 @@ const Range = ({onChange, range, reducer}) => {
);
}}
/>
<label>
<label className="range__to-label">
to
{isSingle && '?'}
<input

View File

@ -0,0 +1,12 @@
.range {
display: flex;
height: 2em;
}
.range__to-label {
align-self: center;
}
.range input[type="text"] {
margin-left: 1em;
}