Add right margin for output box
This commit is contained in:
parent
450d3d37b8
commit
cb40b7c3bb
|
@ -1,6 +1,9 @@
|
|||
html:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
body {
|
||||
margin: 8px;
|
||||
}
|
||||
/* prevent table from wrapping when contents are too long */
|
||||
table {
|
||||
min-width: max-content;
|
||||
|
@ -66,5 +69,5 @@ th input[type=text] {
|
|||
}
|
||||
|
||||
#output {
|
||||
width: 100%;
|
||||
width: calc(100% - 8px);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue