From 2f2d2e8e2d20d61f0ea37935a955dcd5866caf98 Mon Sep 17 00:00:00 2001 From: Julian Xhokaxhiu Date: Tue, 19 Sep 2017 22:19:41 +0200 Subject: [PATCH] Fix font-size only for mobile Fixes #1889 --- source/css/_schemes/Mist/_posts-expanded.styl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/css/_schemes/Mist/_posts-expanded.styl b/source/css/_schemes/Mist/_posts-expanded.styl index 222719bb7..941eb7a64 100644 --- a/source/css/_schemes/Mist/_posts-expanded.styl +++ b/source/css/_schemes/Mist/_posts-expanded.styl @@ -27,7 +27,9 @@ } .post-title:hover:before { background: $black-deep; } - .post-body { font-size: $font-size-small } + .post-body { + +mobile() { font-size: $font-size-small; } + } .post-body img { margin: 0; }