mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
37 lines
556 B
SCSS
37 lines
556 B
SCSS
|
|
// Material Design Popups
|
|
// --------------------------------------------------
|
|
|
|
$popup-md-border-radius: 13px !default;
|
|
$popup-md-bg-color: #f8f8f8 !default;
|
|
|
|
|
|
popup-wrapper {
|
|
border-radius: $popup-md-border-radius;
|
|
background-color: $popup-md-bg-color;
|
|
}
|
|
|
|
.popup-head {
|
|
padding-top: 24px;
|
|
}
|
|
|
|
.popup-body:empty {
|
|
padding: 0;
|
|
}
|
|
|
|
.popup-buttons {
|
|
padding: 0;
|
|
min-height: 0;
|
|
|
|
.button {
|
|
min-height: 42px;
|
|
color: get-color('primary', base);
|
|
font-size: 14px;
|
|
|
|
&:last-child {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
}
|