diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-06-21 21:40:34 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-06-24 14:46:02 +0200 |
commit | f364a27922b19efb312959a562a7541cf9d89e97 (patch) | |
tree | 13617ac3a1dd90ca97c7633a9af8010c85ce5932 | |
parent | ccbaf32bca8e053a67e1c919e296f045ed1eb2d8 (diff) |
Increase padding of toots
-rw-r--r-- | app/javascript/flavours/glitch/styles/components/status.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/status.scss b/app/javascript/flavours/glitch/styles/components/status.scss index 836941d90..48a45fae5 100644 --- a/app/javascript/flavours/glitch/styles/components/status.scss +++ b/app/javascript/flavours/glitch/styles/components/status.scss @@ -150,7 +150,7 @@ } .status { - padding: 8px 10px; + padding: 10px 14px; position: relative; height: auto; border-bottom: 1px solid lighten($ui-base-color, 8%); @@ -159,7 +159,7 @@ @supports (-ms-overflow-style: -ms-autohiding-scrollbar) { // Add margin to avoid Edge auto-hiding scrollbar appearing over content. // On Edge 16 this is 16px and Edge <=15 it's 12px, so aim for 16px. - padding-right: 26px; // 10px + 16px + padding-right: 28px; // 12px + 16px } @keyframes fade { |