From b3c7c8700d7ddf73d6fef4076f15ae7c3d39ce67 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 3 Oct 2016 16:10:17 +0200 Subject: Fix most pages on small screens --- app/assets/stylesheets/accounts.scss | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'app/assets/stylesheets/accounts.scss') diff --git a/app/assets/stylesheets/accounts.scss b/app/assets/stylesheets/accounts.scss index 57da32856..f2be0fcf7 100644 --- a/app/assets/stylesheets/accounts.scss +++ b/app/assets/stylesheets/accounts.scss @@ -63,6 +63,13 @@ margin-top: 30px; position: relative; z-index: 2; + flex-direction: row; + } + + .details-counters { + display: flex; + flex-direction: row; + order: 0; } .counter { @@ -129,6 +136,26 @@ line-height: 18px; padding: 5px 10px; color: #d9e1e8; + order: 1; + } + + @media screen and (max-width: 360px) { + .details { + display: block; + } + + .bio { + text-align: center; + margin-bottom: 20px; + } + + .counter { + flex: 1 1 auto; + } + + .counter:last-child { + border-right: none; + } } } @@ -186,6 +213,18 @@ cursor: default; color: lighten(#282c37, 10%); } + + @media screen and (max-width: 360px) { + padding: 30px 20px; + + a, .current, .next_page, .previous_page, .gap { + display: none; + } + + .next_page, .previous_page { + display: inline-block; + } + } } .accounts-grid { -- cgit