1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

LibWeb: Use monospace font for <kbd> and <samp> elements

This commit is contained in:
Karol Kosek 2022-02-19 21:39:51 +01:00 committed by Andreas Kling
parent 049abbc417
commit 32bd57bdc9

View file

@ -32,7 +32,9 @@ pre {
white-space: pre;
}
code {
code,
kbd,
samp {
font-family: monospace;
}