mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
22 lines
422 B
SCSS
22 lines
422 B
SCSS
.split-pane {
|
|
height: 100%;
|
|
width: 100%;
|
|
@include display-flex();
|
|
@include align-items(stretch);
|
|
}
|
|
.split-pane-menu {
|
|
@include flex(0, 0, $split-pane-menu-width);
|
|
height: 100%;
|
|
width: $split-pane-menu-width;
|
|
border-right: 1px solid $split-pane-menu-border-color;
|
|
|
|
overflow-y: auto;
|
|
|
|
@media all and (max-width: 568px) {
|
|
border-right: none;
|
|
}
|
|
}
|
|
.split-pane-content {
|
|
@include flex(1, 0, auto);
|
|
}
|