fix add/rename dialog right-aligning, and RTL issue

This commit is contained in:
Damien Elmes 2021-04-22 17:31:33 +10:00
parent 0e9f36c416
commit b9a13496ba
2 changed files with 4 additions and 1 deletions

View File

@ -20,7 +20,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
:global(input, select) {
font-size: 16px;
text-align: right;
}
</style>

View File

@ -45,6 +45,10 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
display: grid;
grid-column-gap: 0.5em;
grid-template-columns: 10fr 16px;
:global(input) {
text-align: end;
}
}
</style>