Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. @mixin flex($direction: row, $justify: center, $align: center) {
  2. display: flex;
  3. flex-direction: $direction;
  4. justify-content: $justify;
  5. align-items: $align;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement