Files
ionic-framework/core/src/components/menu-button/menu-button.scss
Mike Hartington 57fbf6c396 fix(back-button): fix menu and back button alignment (#14268)
* fix(): fix menu and back button alignment

* fix(button): remove button-text span
2018-04-04 15:39:35 -04:00

37 lines
788 B
SCSS

@import "../../themes/ionic.globals";
// Menu Button
// --------------------------------------------------
.menu-button button {
@include font-smoothing();
@include text-align(center);
@include appearance(none);
position: relative;
z-index: 0;
display: inline-flex;
flex-flow: row nowrap;
flex-shrink: 0;
align-items: center;
justify-content: center;
border: 0;
outline: none;
line-height: 1;
text-decoration: none;
text-overflow: ellipsis;
text-transform: none;
white-space: nowrap;
cursor: pointer;
vertical-align: top; // the better option for most scenarios
vertical-align: -webkit-baseline-middle; // the best for those that support it
transition: background-color, opacity 100ms linear;
font-kerning: none;
user-select: none;
}