Skip to content

Commit

Permalink
Add remaining justify-content alignment classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
flachware committed Nov 14, 2019
1 parent ca98a3c commit 1c97f4e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/stylesheets/partials/_flex.scss
Expand Up @@ -11,7 +11,23 @@
align-items: center;
}

&.justify-content-start {
justify-content: flex-start;
}

&.justify-content-end {
justify-content: flex-end;
}

&.justify-content-center {
justify-content: center;
}

&.justify-content-between {
justify-content: space-between;
}

&.justify-content-around {
justify-content: space-around;
}
}

0 comments on commit 1c97f4e

Please sign in to comment.