From 61bba6c31f060df4e78ff314bb1b614494530d3c Mon Sep 17 00:00:00 2001
From: turt2live <travpc@gmail.com>
Date: Mon, 24 Apr 2017 08:44:53 -0600
Subject: [PATCH] CSS to make h1 and h2 the same size as h1.

Addresses #1772

Signed-off-by: Travis Ralston <travpc@gmail.com>
---
 .../css/matrix-react-sdk/views/rooms/_EventTile.scss      | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss
index 4f01aeeee7..5adf016f05 100644
--- a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss
+++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss
@@ -331,6 +331,14 @@ limitations under the License.
     font-family: inherit ! important;
 }
 
+
+/* Make h1 and h2 the same size as h3. */
+.mx_EventTile_content .markdown-body h1,
+.mx_EventTile_content .markdown-body h2
+{
+    font-size: 1.5em;
+}
+
 .mx_EventTile_content .markdown-body a {
     color: $accent-color;
 }