left align input boxes; decrease width

This commit is contained in:
Damien Elmes 2021-05-19 16:41:19 +10:00
parent 581480191a
commit 19dd739764

View file

@ -24,13 +24,12 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<style lang="scss"> <style lang="scss">
.outer { .outer {
display: grid; display: grid;
grid-template-columns: 2fr 1fr; grid-template-columns: 5fr 2fr;
grid-column-gap: 0.5em;
grid-row-gap: 0.5em; grid-row-gap: 0.5em;
} }
.full-grid-width { .full-grid-width {
grid-column: 1 / 3; grid-column: 1 / 6;
} }
.table { .table {
@ -51,10 +50,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
display: grid; display: grid;
grid-column-gap: 0.5em; grid-column-gap: 0.5em;
grid-template-columns: 10fr 16px; grid-template-columns: 10fr 16px;
:global(input) {
text-align: end;
}
} }
</style> </style>