blob: 5c203370dfa56d96cf8f94e8f6a907587fca60de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Scroll Sista
//places subheader underneath top tabs. Don't forget to import ionic scss before this file!
.tabs-top .bar-subheader {
top: $bar-height + $tabs-height;
}
.platform-ios.platform-cordova {
// iOS has a status bar which sits on top of the header.
// Bump down everything to make room for it. However, if
// if its in Cordova, and set to fullscreen, then disregard the bump.
&:not(.fullscreen) {
.tabs-top .bar-subheader {
top: $bar-height + $tabs-height + $ios-statusbar-height;
}
}
}
|