From e239370350581bbc708bc363478c0a2eda437bcc Mon Sep 17 00:00:00 2001 From: adamsvystun Date: Fri, 14 Dec 2018 20:31:40 +0100 Subject: [PATCH] Fix authors wrapping on mobile --- frontend/static/frontend/css/app.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/frontend/static/frontend/css/app.css b/frontend/static/frontend/css/app.css index cf648ff..f897366 100644 --- a/frontend/static/frontend/css/app.css +++ b/frontend/static/frontend/css/app.css @@ -27,7 +27,6 @@ body { .authors { display: flex; justify-content: space-between; - max-width: 500px; margin: 0 auto; } @@ -134,4 +133,11 @@ button:focus { margin-top: 0; border-radius: 0; } + .authors { + flex-direction: column; + text-align: center; + } + .authors div { + margin: 2.5px 0; + } }