mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
32 lines
602 B
SCSS
32 lines
602 B
SCSS
.bar {
|
|
background-color: $barBackground;
|
|
border-style: solid;
|
|
border-width: 0;
|
|
|
|
padding: $barPaddingPortrait;
|
|
|
|
&.bar-header {
|
|
border-bottom-width: 1px;
|
|
}
|
|
&.bar-footer {
|
|
border-top-width: 1px;
|
|
}
|
|
|
|
&.bar-default {
|
|
background-color: $barDefaultBackground;
|
|
border-color: $barDefaultBorderColor;
|
|
}
|
|
&.bar-secondary {
|
|
background-color: $barSecondaryBackground;
|
|
border-color: $barSecondaryBorderColor;
|
|
}
|
|
|
|
/*
|
|
Disabled temporarily because it's annoying for testing.
|
|
@media screen and (orientation : landscape) {
|
|
padding: $barPaddingLandscape;
|
|
}
|
|
*/
|
|
|
|
}
|