mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
28 lines
585 B
SCSS
28 lines
585 B
SCSS
|
|
// Action Menu
|
|
// --------------------------------------------------
|
|
|
|
$action-menu-width: 100% !default;
|
|
$action-menu-max-width: 520px !default;
|
|
$action-menu-background-color: rgba(243,243,243,.95) !default;
|
|
$action-menu-button-text-color: #007aff !default;
|
|
|
|
|
|
.action-menu-container {
|
|
position: absolute;
|
|
z-index: $z-index-action-menu;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
|
|
.list,
|
|
.list-header {
|
|
width: $action-menu-width;
|
|
max-width: $action-menu-max-width;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
}
|
|
|