diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-03-07 08:59:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-07 08:59:27 +0100 |
commit | 8de048fcdb328167922f3056e460afc6f055cb8d (patch) | |
tree | 3d1c1ecfd131ca46446a0c483b4aaecfb4d81307 /app/javascript | |
parent | cfa9b6e13ab3c434f3901df6f614d0aa94a3d1ed (diff) |
In wide layout, columnize Mastodon features on landing page (#6674)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/styles/mastodon/about.scss | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/app/javascript/styles/mastodon/about.scss b/app/javascript/styles/mastodon/about.scss index 9ce83aa9b..f29918135 100644 --- a/app/javascript/styles/mastodon/about.scss +++ b/app/javascript/styles/mastodon/about.scss @@ -832,8 +832,13 @@ $small-breakpoint: 960px; } &__features { + & > p { + padding-right: 60px; + } + .features-list { - margin: 40px 0 !important; + margin: 40px 0; + margin-top: 30px; } &__action { @@ -842,17 +847,11 @@ $small-breakpoint: 960px; } .features-list { - margin-top: 20px; - .features-list__row { display: flex; padding: 10px 0; justify-content: space-between; - &:first-child { - padding-top: 0; - } - .visual { flex: 0 0 auto; display: flex; @@ -878,6 +877,14 @@ $small-breakpoint: 960px; } } } + + @media screen and (min-width: $small-breakpoint) { + display: grid; + grid-gap: 30px; + grid-template-columns: 1fr 1fr; + grid-auto-columns: 50%; + grid-auto-rows: max-content; + } } .extended-description { |