refactor(sass): fix incorrect sass value, add max width to alert

references #5565
This commit is contained in:
Brandy Carney
2016-03-03 16:12:14 -05:00
parent 1e73a3457e
commit 3d12e69d66

View File

@@ -7,6 +7,7 @@
$alert-wp-backdrop-background: white !default;
$alert-wp-width: 100% !default;
$alert-wp-max-width: 520px !default;
$alert-wp-border-radius: 0 !default;
$alert-wp-border-width: 1px !default;
$alert-wp-border-style: solid !default;
@@ -55,7 +56,7 @@ $alert-wp-button-group-justify-content: flex-end !default;
$alert-wp-button-group-flex-wrap: wrap-reverse !default;
$alert-wp-button-group-vertical-width: 100% !default;
$alert-wp-button-group-vertical-margin-top: 100% !default;
$alert-wp-button-group-vertical-margin-top: 5px !default;
ion-alert {
.backdrop {
@@ -65,6 +66,7 @@ ion-alert {
.alert-wrapper {
width: $alert-wp-width;
max-width: $alert-wp-max-width;
border-radius: $alert-wp-border-radius;
background: $alert-wp-background;
border: $alert-wp-border-width $alert-wp-border-style $alert-wp-border-color;