From 32bd57bdc95012f40233d5a1378d3f0665b9cd46 Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sat, 19 Feb 2022 21:39:51 +0100 Subject: [PATCH] LibWeb: Use monospace font for and elements --- Userland/Libraries/LibWeb/CSS/Default.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index f74d26ce64..ebf3d760b1 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -32,7 +32,9 @@ pre { white-space: pre; } -code { +code, +kbd, +samp { font-family: monospace; }