LibWebView: Use an overflow-x value of 'auto' for Inspector containers

The Inspector looks a bit nicer if we don't paint the horizontal scroll
bars unless we need to.
This commit is contained in:
Timothy Flynn 2024-08-02 10:45:23 -04:00 committed by Tim Flynn
parent d2c775b0ca
commit 5c73a31b4f
Notes: github-actions[bot] 2024-08-02 16:22:14 +00:00

View file

@ -75,7 +75,7 @@ body {
padding: 8px 0px 0px 4px; padding: 8px 0px 0px 4px;
overflow: scroll; overflow: auto scroll;
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
@ -187,7 +187,7 @@ details > :not(:first-child) {
.console-output { .console-output {
height: calc(100% - 32px); height: calc(100% - 32px);
overflow: scroll; overflow: auto scroll;
} }
.console-input { .console-input {