mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
47 lines
681 B
SCSS
47 lines
681 B
SCSS
@import "../../themes/ionic.globals";
|
|
|
|
// Menu Button
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
pointer-events: all;
|
|
}
|
|
|
|
button {
|
|
@include margin(0);
|
|
@include padding(0);
|
|
@include font-smoothing();
|
|
|
|
position: relative;
|
|
z-index: 0;
|
|
display: 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;
|
|
|
|
color: inherit;
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
font-kerning: none;
|
|
user-select: none;
|
|
|
|
appearance: none;
|
|
}
|