Skip to content

Instantly share code, notes, and snippets.

@mio-U-M
Created February 22, 2020 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mio-U-M/e41971eb3f6adfe6e940063749e1dc6a to your computer and use it in GitHub Desktop.
Save mio-U-M/e41971eb3f6adfe6e940063749e1dc6a to your computer and use it in GitHub Desktop.
absoluteを指定する時いちいち全部書かなくていいようにしたものです
@mixin position-ab($top: auto, $right: auto, $bottom: auto, $left: auto) {
position: absolute;
margin: auto;
top: $top;
right: $right;
bottom: $bottom;
left: $left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment