Upgrade foundation to 6.5.3

This commit is contained in:
Pranav Raj Sreepuram
2019-11-01 13:44:03 +05:30
parent 5cc3543657
commit dbb57a8a56
9 changed files with 53 additions and 42 deletions

View File

@@ -23,7 +23,6 @@
}
.account-row {
@include flex-grid-column(3, $space-medium);
@include padding($space-normal);
@include flex;
flex-direction: column;

View File

@@ -1,6 +1,7 @@
.side-menu {
i {
min-width: 2rem;
min-width: $space-two;
margin-right: $space-smaller;
}
}
@@ -43,8 +44,9 @@
@include elegant-card;
@include border-light;
left: 18%;
top: -160%;
top: -110%;
visibility: visible;
display: block;
width: 80%;
z-index: 999;

View File

@@ -21,7 +21,19 @@
background: lighten($alert-color, 30%);
.button {
@include button-style($alert-color, darken($alert-color, 7%), $color-white);
// Default and disabled states
&,
&.disabled, &[disabled],
&.disabled:hover, &[disabled]:hover,
&.disabled:focus, &[disabled]:focus {
background-color: $alert-color;
color: $color-white;
}
&:hover, &:focus {
background-color: darken($alert-color, 7%);
color: $color-white;
}
}
}