mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
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:
parent
d2c775b0ca
commit
5c73a31b4f
Notes:
github-actions[bot]
2024-08-02 16:22:14 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/5c73a31b4f3 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/934 Reviewed-by: https://github.com/AtkinsSJ ✅
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue