5d2e1ce19b
1. Rebuild the heathchecked-resource component now we can copy and paste 2. As the above rebuild came with new icons, we also swapped out 'most' of the other areas where we were using these new icons, plus any icons that were effected by the new icon placeholders 3. Begin to remove more and more of the project specific icons (now replaced by the shared ones)
26 lines
570 B
SCSS
26 lines
570 B
SCSS
%flash-message p {
|
|
border-width: 1px;
|
|
border-radius: $decor-radius-100;
|
|
}
|
|
%flash-message p strong::before {
|
|
@extend %as-pseudo;
|
|
}
|
|
%flash-message p.success strong::before {
|
|
@extend %with-check-circle-fill-color-icon;
|
|
}
|
|
%flash-message p.warning strong::before {
|
|
@extend %with-alert-triangle-color-icon;
|
|
}
|
|
%flash-message p.error strong::before {
|
|
@extend %with-cancel-square-fill-color-icon;
|
|
}
|
|
%flash-message p.success {
|
|
@extend %frame-green-500;
|
|
}
|
|
%flash-message p.warning {
|
|
@extend %frame-yellow-500;
|
|
}
|
|
%flash-message p.error {
|
|
@extend %frame-red-500;
|
|
}
|