mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
23 lines
343 B
SCSS
23 lines
343 B
SCSS
@import "src/styles/variables";
|
|
|
|
div.toast {
|
|
@include outer_shadow;
|
|
|
|
cursor: pointer;
|
|
font: $font_14_semibold;
|
|
user-select: none;
|
|
text-transform: uppercase;
|
|
color: white;
|
|
}
|
|
|
|
div.toast.error {
|
|
background: $red_gradient_alt;
|
|
}
|
|
|
|
div.toast.success {
|
|
background: $green_gradient;
|
|
}
|
|
|
|
div.toast.info {
|
|
background: $cyan_gradient;
|
|
}
|