mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
37 lines
788 B
SCSS
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;
|
|
}
|