Files
2015-09-04 23:54:00 -05:00

42 lines
682 B
SCSS

// iOS Popups
// --------------------------------------------------
$popup-ios-border-radius: 13px !default;
$popup-ios-bg-color: #f8f8f8 !default;
$popup-ios-button-text-color: color(primary) !default;
.popup {
popup-wrapper {
border-radius: $popup-ios-border-radius;
background-color: $popup-ios-bg-color;
}
.popup-head {
padding-top: 24px;
}
.popup-body:empty {
padding: 0;
}
.popup-buttons {
padding: 0;
min-height: 0;
button {
background-color: transparent;
color: $popup-ios-button-text-color;
font-size: 14px;
&:last-child {
font-weight: bold;
}
}
}
}