Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View anjum121's full-sized avatar

Anjum Nawab anjum121

View GitHub Profile
@anjum121
anjum121 / flexbox.scss
Created March 7, 2017 08:11 — 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;