Skip to content

Instantly share code, notes, and snippets.

@onezerodigits
Created June 25, 2015 14:11
Show Gist options
  • Save onezerodigits/f77f16e4aafde220cc77 to your computer and use it in GitHub Desktop.
Save onezerodigits/f77f16e4aafde220cc77 to your computer and use it in GitHub Desktop.
Minimal SCSS for Sidr
// Minimal initial style of sidebar if you're using Sidr
// http://www.berriart.com/sidr/
$sidebar-width : 260px;
$sidebar-width-neg : -260px;
.sidr{
display:none;
position:absolute;
position:fixed;
top:0;
height:100%;
z-index:999999;
width:$sidebar-width;
overflow-x:none;
overflow-y:auto;
}
.sidr.right{
left:auto;
right:$sidebar-width-neg;
}
.sidr.left{
left:$sidebar-width-neg;
right:auto
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment