summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-07-11 12:44:27 +0200
committerAndreas Kling <kling@serenityos.org>2022-07-11 18:57:45 +0200
commitf6a97ff7d5eb12ab500ef867ef3e4a3bc0eeddca (patch)
tree6f1f8dd20eece92aacead2ffc4b727b3952565ca /Userland/Libraries
parent327938c94518895bf82c57772b5940f21ee1e0af (diff)
downloadserenity-f6a97ff7d5eb12ab500ef867ef3e4a3bc0eeddca.zip
LibWeb: Tweak padding on button elements match other engines
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibWeb/CSS/Default.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css
index d287007f5b..149223e714 100644
--- a/Userland/Libraries/LibWeb/CSS/Default.css
+++ b/Userland/Libraries/LibWeb/CSS/Default.css
@@ -246,7 +246,7 @@ input[type=submit], input[type=button], input[type=reset], input[type=checkbox],
}
button, input[type=submit], input[type=button], input[type=reset] {
- padding: 4px 8px;
+ padding: 1px 4px;
background-color: -libweb-palette-button;
border: 1px solid -libweb-palette-threed-shadow1;
}