Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 318 Bytes

SASSNotes.md

File metadata and controls

23 lines (20 loc) · 318 Bytes

Sass Notes

Reusable mixins

border-radius

@mixin border-radius($radius) {
  -webkit-border-radius: $radius;
     -moz-border-radius: $radius;
          border-radius: $radius;
}

Clearfix

@mixin clearfix {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}