Skip to content

Instantly share code, notes, and snippets.

View salt-istanbul's full-sized avatar

Salt Hareket salt-istanbul

View GitHub Profile
@salt-istanbul
salt-istanbul / flexbox.scss
Created October 20, 2018 22:02 — forked from richardtorres314/flexbox.scss
CSS Flexbox - Sass Mixins
// --------------------------------------------------
// Flexbox SASS mixins
// The spec: http://www.w3.org/TR/css3-flexbox
// --------------------------------------------------
// Flexbox display
@mixin flexbox() {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;