Add right margin for output box

This commit is contained in:
blankie 2024-03-01 11:22:07 +11:00
parent 450d3d37b8
commit cb40b7c3bb
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
html:has(dialog[open]) { html:has(dialog[open]) {
overflow: hidden; overflow: hidden;
} }
body {
margin: 8px;
}
/* prevent table from wrapping when contents are too long */ /* prevent table from wrapping when contents are too long */
table { table {
min-width: max-content; min-width: max-content;
@ -66,5 +69,5 @@ th input[type=text] {
} }
#output { #output {
width: 100%; width: calc(100% - 8px);
} }