mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
50 lines
503 B
SCSS
50 lines
503 B
SCSS
|
|
/**
|
|
* Platform
|
|
* --------------------------------------------------
|
|
*/
|
|
|
|
.platform-ios7 {
|
|
.bar-header {
|
|
height: 64px;
|
|
|
|
> * {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
|
|
.has-header {
|
|
top: 64px;
|
|
}
|
|
|
|
.bar-subheader {
|
|
top: 64px;
|
|
}
|
|
|
|
.has-subheader {
|
|
top: 108px;
|
|
}
|
|
}
|
|
|
|
.platform-android {
|
|
.bar-header {
|
|
height: 48px;
|
|
}
|
|
|
|
.has-header {
|
|
top: 48px;
|
|
}
|
|
|
|
.bar-subheader {
|
|
top: 48px;
|
|
}
|
|
|
|
.has-subheader {
|
|
top: 96px;
|
|
}
|
|
|
|
.title {
|
|
line-height: 48px;
|
|
}
|
|
}
|