From 6cc9c2f2febaa7f8da5e86ee5bec8c183c991ff4 Mon Sep 17 00:00:00 2001 From: Pat Eskinasy Date: Fri, 10 Aug 2018 11:59:57 +0100 Subject: [PATCH 1/2] Fixing scaling issue w. emoji in Sidebar Author Profile Had the same issue as in mmistakes#1554 So should there be more demand for having emojis in sidebar, this style change fixes it --- _sass/minimal-mistakes/_sidebar.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_sass/minimal-mistakes/_sidebar.scss b/_sass/minimal-mistakes/_sidebar.scss index 59d1204c8b06..ab888c0f249e 100644 --- a/_sass/minimal-mistakes/_sidebar.scss +++ b/_sass/minimal-mistakes/_sidebar.scss @@ -61,6 +61,11 @@ line-height: 1.5; } +img.emoji { + width: 20px; + height: 20px; + } + img { width: 100%; } From b70bcc8497cdb1f15214f02915b0b6b895f1ca30 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Fri, 10 Aug 2018 08:57:07 -0400 Subject: [PATCH 2/2] Fix indendation and nesting --- _sass/minimal-mistakes/_sidebar.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_sass/minimal-mistakes/_sidebar.scss b/_sass/minimal-mistakes/_sidebar.scss index ab888c0f249e..f7fc72dc4963 100644 --- a/_sass/minimal-mistakes/_sidebar.scss +++ b/_sass/minimal-mistakes/_sidebar.scss @@ -61,13 +61,13 @@ line-height: 1.5; } -img.emoji { - width: 20px; - height: 20px; - } - img { width: 100%; + + &.emoji { + width: 20px; + height: 20px; + } } }