diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-09-20 10:51:52 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-10-06 00:32:06 +0200 |
commit | 4b181eba13464287184a90f65e7012ce40b4e3d7 (patch) | |
tree | ccf929f19ab681d725e1c0d110a8c2c22b8f8188 /app | |
parent | 7fc6213bfe72197b7e8fb4d6b40c4b17ed7c3c6e (diff) |
[Glitch] Fix left side of single column layout being cropped on smaller screens
Port 37ccafec8fe8bf5588794257744554be61a3f22e to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/styles/components/columns.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/columns.scss b/app/javascript/flavours/glitch/styles/components/columns.scss index 2498e5d03..6ba9698c5 100644 --- a/app/javascript/flavours/glitch/styles/components/columns.scss +++ b/app/javascript/flavours/glitch/styles/components/columns.scss @@ -25,6 +25,7 @@ pointer-events: none; display: flex; justify-content: flex-end; + min-width: 285px; &--start { justify-content: flex-start; @@ -42,6 +43,7 @@ box-sizing: border-box; width: 100%; max-width: 600px; + flex: 0 0 auto; display: flex; flex-direction: column; |