From 83b4c4056679a0bceb20343933b8a3223630e520 Mon Sep 17 00:00:00 2001 From: Jean-Yves Gastaud Date: Tue, 20 Dec 2016 15:53:29 +0100 Subject: [PATCH] docs: Fix h1 size on small breakpoint in theme --- docs/static/css/style-responsive.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/static/css/style-responsive.css b/docs/static/css/style-responsive.css index d27a36d20..9381ce68c 100644 --- a/docs/static/css/style-responsive.css +++ b/docs/static/css/style-responsive.css @@ -55,3 +55,10 @@ display: none; } } + +@media (max-width:360px) { + + h1 { + font-size: 1.9em; + } +}