summaryrefslogtreecommitdiff
path: root/www/lib/ionic-scroll-sista/scss
diff options
context:
space:
mode:
Diffstat (limited to 'www/lib/ionic-scroll-sista/scss')
-rw-r--r--www/lib/ionic-scroll-sista/scss/ionic.scroll.sista.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/www/lib/ionic-scroll-sista/scss/ionic.scroll.sista.scss b/www/lib/ionic-scroll-sista/scss/ionic.scroll.sista.scss
new file mode 100644
index 00000000..5c203370
--- /dev/null
+++ b/www/lib/ionic-scroll-sista/scss/ionic.scroll.sista.scss
@@ -0,0 +1,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;
+ }
+ }
+} \ No newline at end of file