Skip to content

Instantly share code, notes, and snippets.

@shahab570
Last active December 29, 2020 12:29
Show Gist options
  • Save shahab570/675ab83e3b32a85277df6b8190e5e4e1 to your computer and use it in GitHub Desktop.
Save shahab570/675ab83e3b32a85277df6b8190e5e4e1 to your computer and use it in GitHub Desktop.
//_mixins.scss
@mixin reset {
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
}
@mixin center {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment