mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
24 lines
434 B
SCSS
24 lines
434 B
SCSS
|
|
// Content
|
|
// --------------------------------------------------
|
|
|
|
$content-background-color: #fff !default;
|
|
$swipe-handle-width: 20px !default;
|
|
|
|
|
|
.nav-item-container {
|
|
background-color: $content-background-color;
|
|
}
|
|
|
|
swipe-handle {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
display: block;
|
|
width: $swipe-handle-width;
|
|
height: 100%;
|
|
z-index: $z-index-swipe-handle;
|
|
background: red;
|
|
opacity: 0.5;
|
|
}
|