Skip to content

Instantly share code, notes, and snippets.

@garbray
Created September 4, 2012 21:05
Show Gist options
  • Save garbray/3626469 to your computer and use it in GitHub Desktop.
Save garbray/3626469 to your computer and use it in GitHub Desktop.
sass simple mixin
@mixin floaty($minimized-by-default, $side: left)
float: $side
width: 300px
@if $minimized-by-default
overflow: hidden
width: 5px
.navigation
background: green
@include floaty(false)
.navigation.secondary
background: blue
@include floaty(true, right)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment