From 8035662f93b841919fdbacd7351eeda039d93830 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Sun, 13 May 2018 18:53:37 -0700 Subject: [PATCH] fix minor design issue (#297) --- routes/_components/status/StatusToolbar.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/routes/_components/status/StatusToolbar.html b/routes/_components/status/StatusToolbar.html index 5f3c247..7aa2e29 100644 --- a/routes/_components/status/StatusToolbar.html +++ b/routes/_components/status/StatusToolbar.html @@ -38,8 +38,15 @@ justify-content: space-between; } .status-toolbar.status-in-own-thread { - margin-left: 58px; + margin-left: 63px; /* offset to align all toolbar items: 48px avatar + 15px margin-right */ } + + @media (max-width: 767px) { + .status-toolbar.status-in-own-thread { + margin-left: 53px; /* offset to align all toolbar items: 48px avatar + 5px margin-right */ + } + } +