Files
2015-06-21 20:50:25 -05:00

42 lines
750 B
SCSS

// Alert
// --------------------------------------------------
$alert-width: 40% !default;
$alert-min-width: 270px !default;
$alert-max-width: 460px !default;
$alert-content-margin: 24px !default;
.alert .overlay-container {
display: flex;
justify-content: center;
align-items: center;
}
.alert-container {
display: block;
width: $alert-width;
min-width: $alert-min-width;
max-width: $alert-max-width;
margin-bottom: 60px;
background: white;
}
.alert-header {
margin: $alert-content-margin;
font-size: 2rem;
font-weight: 400;
}
.alert-content {
margin: $alert-content-margin;
}
.alert-actions {
display: flex;
justify-content: flex-end;
}