From 5c73a31b4f3e18acb783b6a5c6c9a479d2956de8 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 2 Aug 2024 10:45:23 -0400 Subject: [PATCH] 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. --- Base/res/ladybird/inspector.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Base/res/ladybird/inspector.css b/Base/res/ladybird/inspector.css index 23a5c94d07c..e53a11b28cc 100644 --- a/Base/res/ladybird/inspector.css +++ b/Base/res/ladybird/inspector.css @@ -75,7 +75,7 @@ body { padding: 8px 0px 0px 4px; - overflow: scroll; + overflow: auto scroll; } @media (prefers-color-scheme: dark) { @@ -187,7 +187,7 @@ details > :not(:first-child) { .console-output { height: calc(100% - 32px); - overflow: scroll; + overflow: auto scroll; } .console-input {