Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @mixin commmonsBorderBox($borderSize, $borderColor,$width,$height) {
  2. display: inline-block;
  3. border: $borderSize dotted $borderColor;
  4. margin: auto;
  5. text-align: center;
  6. justify-content: center;
  7. width: $width;
  8. height: $height;
  9. }
  10. @mixin commonContainer() {
  11. display: block;
  12. margin: auto;
  13. text-align: center;
  14. justify-content: center;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement