6d8dc8a09b
* ui: Standardize logo naming According to structure it should always be logo-name not name-logo * Make sure all our logos use logo-name format * Upgrade to @hashicorp/structure-icons 1.9.0 * Add `-color` to be consistent with other logos * Add ms logo back in * Remove all the old `*-color` icons from before when we got masks * Add missing files * Missed glimmer extend name change
20 lines
525 B
SCSS
20 lines
525 B
SCSS
@import './skin';
|
|
@import './layout';
|
|
.flash-message {
|
|
@extend %flash-message;
|
|
}
|
|
%flash-message.exiting {
|
|
@extend %blink-in-fade-out;
|
|
}
|
|
/* This is for the flash message that appears */
|
|
/* when you save an intention that already exists */
|
|
/* once we have refactored app-view with data-source with nicer */
|
|
/* flash message usage we should be able to remove this */
|
|
%flash-message p.exists strong::before {
|
|
@extend %with-cancel-square-fill-mask;
|
|
color: $red-500;
|
|
}
|
|
%flash-message p.exists {
|
|
@extend %frame-red-500;
|
|
}
|