This commit is contained in:
Adam Bradley
2015-03-25 21:47:19 -05:00
parent 08b5658c2a
commit c9159654e7
4 changed files with 15 additions and 3 deletions

View File

@@ -1,4 +1,8 @@
// Globals
// --------------------------------------------------
[ion-app] {
-webkit-user-drag: none;

View File

@@ -45,6 +45,7 @@ html {
.pane > .pane-container > .content {
position: relative;
z-index: $z-index-content;
@include flex(1);
}

View File

@@ -1,3 +1,7 @@
// Z-Index
// --------------------------------------------------
$z-index-list-border: 50;
$z-index-content: 1;
$z-index-list-border: 50;

View File

@@ -1,5 +1,8 @@
// Content
// --------------------------------------------------
.content {
flex: 1;
background-color: white;
z-index: 1;
}