mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 15:51:16 +08:00
28 lines
403 B
SCSS
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 {
|
|
|
|
} |