From 25c15d3ecccc01538fa93fdf3b29a01b07d9581b Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Sun, 3 Jun 2018 13:47:22 -0400 Subject: [PATCH] Fix a typo that causes inconsistent line heights in the archives. A typo caused the h3.messages class to be larger than the h1.subject class that was apparent when reading the archives. This makes both the CSS valid as well as brings a better user experience. --- django/media/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/media/css/main.css b/django/media/css/main.css index 4311fb4..6221d90 100644 --- a/django/media/css/main.css +++ b/django/media/css/main.css @@ -747,7 +747,7 @@ th.formfieldnamecontainer { h3.messages { text-transform: none; - font-size 1.2em; + font-size: 1.2em; } .message-header { -- 2.39.5