mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
39 lines
526 B
SCSS
39 lines
526 B
SCSS
//
|
|
// Alerts
|
|
// --------------------------------------------------
|
|
|
|
|
|
// Base styles
|
|
// -------------------------
|
|
|
|
.alert {
|
|
padding: 8px 35px 8px 14px;
|
|
}
|
|
.alert h4 {
|
|
margin: 0;
|
|
}
|
|
|
|
// Adjust close link position
|
|
.alert .close {
|
|
position: relative;
|
|
top: -2px;
|
|
right: -21px;
|
|
line-height: $baseLineHeight;
|
|
}
|
|
|
|
|
|
// Block alerts
|
|
// -------------------------
|
|
|
|
.alert-block {
|
|
padding-top: 14px;
|
|
padding-bottom: 14px;
|
|
}
|
|
.alert-block > p,
|
|
.alert-block > ul {
|
|
margin-bottom: 0;
|
|
}
|
|
.alert-block p + p {
|
|
margin-top: 5px;
|
|
}
|