about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-09-20 10:51:52 +0200
committerGitHub <noreply@github.com>2019-09-20 10:51:52 +0200
commit37ccafec8fe8bf5588794257744554be61a3f22e (patch)
tree80ecb5ae9040884f7880cbf0e7d6188fa64f18cc
parent3ed94dcc1acf73f1d0d1ab43567b88ee953f57c9 (diff)
Fix left side of single column layout being cropped on smaller screens (#11894)
Fix #11476
-rw-r--r--app/javascript/styles/mastodon/components.scss2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss
index 8893848ae..17c94e23c 100644
--- a/app/javascript/styles/mastodon/components.scss
+++ b/app/javascript/styles/mastodon/components.scss
@@ -1893,6 +1893,7 @@ a.account__display-name {
       pointer-events: none;
       display: flex;
       justify-content: flex-end;
+      min-width: 285px;
 
       &--start {
         justify-content: flex-start;
@@ -1910,6 +1911,7 @@ a.account__display-name {
       box-sizing: border-box;
       width: 100%;
       max-width: 600px;
+      flex: 0 0 auto;
       display: flex;
       flex-direction: column;