Files
Adam Bradley 672007d332 border-box css
2013-08-26 15:56:56 -05:00

28 lines
403 B
SCSS

/* the page content the panel should move around */
.panel-page-container > * {
width: 400px;
left: 100px;
}
/* the container of panel content to show */
.panel-content {
width: $panelViewWidth;
min-height: 100%;
max-height: 100%;
border-width: 0;
position: absolute;
top: 0;
display: block;
}
.panel-reveal {
z-index: 0;
left: $panelViewWidth * -1;
}
.panel-reveal-open {
}