Parcourir la source

In wide layout, columnize Mastodon features on landing page (#6674)

master
Eugen Rochko il y a 6 ans
committed by GitHub
Parent
révision
8de048fcdb
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 4AEE18F83AFDEB23
2 fichiers modifiés avec 18 ajouts et 9 suppressions
  1. +14
    -7
      app/javascript/styles/mastodon/about.scss
  2. +4
    -2
      app/views/about/show.html.haml

+ 14
- 7
app/javascript/styles/mastodon/about.scss Voir le fichier

@@ -832,8 +832,13 @@ $small-breakpoint: 960px;
} }


&__features { &__features {
& > p {
padding-right: 60px;
}

.features-list { .features-list {
margin: 40px 0 !important;
margin: 40px 0;
margin-top: 30px;
} }


&__action { &__action {
@@ -842,17 +847,11 @@ $small-breakpoint: 960px;
} }


.features-list { .features-list {
margin-top: 20px;

.features-list__row { .features-list__row {
display: flex; display: flex;
padding: 10px 0; padding: 10px 0;
justify-content: space-between; justify-content: space-between;


&:first-child {
padding-top: 0;
}

.visual { .visual {
flex: 0 0 auto; flex: 0 0 auto;
display: flex; 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 { .extended-description {


+ 4
- 2
app/views/about/show.html.haml Voir le fichier

@@ -103,8 +103,10 @@
- if Setting.timeline_preview - if Setting.timeline_preview
.column-4.landing-page__information .column-4.landing-page__information
.landing-page__features .landing-page__features
%h3= t 'about.what_is_mastodon'
%p= t 'about.about_mastodon_html'
.features-list
%div
%h3= t 'about.what_is_mastodon'
%p= t 'about.about_mastodon_html'


= render 'features' = render 'features'




Chargement…
Annuler
Enregistrer