mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00

* fix(menu-button): Correct color if toolbar has custom color * fix(menu-button): Fix variable name
22 lines
294 B
SCSS
22 lines
294 B
SCSS
@import "./menu-button";
|
|
@import "./menu-button.ios.vars";
|
|
|
|
// iOS Menu Button
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
--color: #{$menu-button-ios-color};
|
|
}
|
|
|
|
:host(.activated) {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
button {
|
|
@include padding(0, 5px);
|
|
}
|
|
|
|
ion-icon {
|
|
font-size: 31px;
|
|
}
|