WIP update mixin. Update Alert svg width/height.

This commit is contained in:
bmauger 2021-11-19 08:53:24 -05:00
parent 14f9d86a3d
commit a1ba5911a2
3 changed files with 14 additions and 5 deletions

View file

@ -18,7 +18,7 @@
label {
position: relative;
background: $white;
height: 3rem;
min-height: 3rem;
transition: all 150ms linear;
border-radius: $border-radius-lg;
border: 1px solid $gray-500;
@ -37,7 +37,8 @@
color: $danger;
}
}
@include spinner;
//Add spinner. Specify width and height
@include spinner(1rem,1rem);
}
}
}

View file

@ -7,7 +7,7 @@
//Spinner
//Choose color and position
@mixin spinner {
@mixin spinner($width, $height) {
&.spinner {
//Open an overlay to prevent page interaction
&:before {
@ -27,8 +27,8 @@
mask: url(../../assets/img/icons/spinner.svg);
mask-size: cover;
position: absolute;
width: 1rem;
height: 1rem;
width: $width;
height: $height;
animation: rotation 1s infinite linear;
@keyframes rotation {
100% {

View file

@ -51,6 +51,8 @@ export default {
}
svg {
fill: $blue-700;
width: 1rem;
height: 1rem;
}
}
&.alert-danger {
@ -59,6 +61,8 @@ export default {
}
svg {
fill: $red-700;
width: 1rem;
height: 1rem;
}
}
&.alert-warning {
@ -67,6 +71,8 @@ export default {
}
svg {
fill: $yellow-700;
width: 1rem;
height: 1rem;
}
}
&.alert-success {
@ -75,6 +81,8 @@ export default {
}
svg {
fill: $green-700;
width: 1rem;
height: 1rem;
}
}
}