From 50b8093ee14a460040b5eb081d9360eab50d9c25 Mon Sep 17 00:00:00 2001 From: Karan Sharma Date: Thu, 11 Mar 2021 11:29:48 +0530 Subject: [PATCH] fix: custom line-height for headers --- cmd/doggo/api/assets/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cmd/doggo/api/assets/style.css b/cmd/doggo/api/assets/style.css index 82bd635..2d00b81 100644 --- a/cmd/doggo/api/assets/style.css +++ b/cmd/doggo/api/assets/style.css @@ -14,10 +14,14 @@ body { font-family: "Segoe UI", "Helvetica Neue", Inter, sans-serif; font-size: 16px; - line-height: 1; + line-height: 24px; color: #111; } +h1, h2, h3, h4 { + line-height: 1.3em; +} + a { color: var(--primary); }