mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
20 lines
430 B
SCSS
20 lines
430 B
SCSS
.bar {
|
|
background-color: $barBackground;
|
|
border-bottom: $barBorderBottom;
|
|
|
|
padding: $barPaddingPortrait;
|
|
|
|
@media screen and (orientation : landscape) {
|
|
padding: $barPaddingLandscape;
|
|
}
|
|
|
|
|
|
&.bar-default {
|
|
background-color: $barDefaultBackground;
|
|
border-bottom: $barDefaultBorderBottom;
|
|
}
|
|
&.bar-secondary {
|
|
background-color: $barSecondaryBackground;
|
|
border-bottom: $barSecondaryBorderBottom;
|
|
}
|
|
} |