1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00
Files
tabler/core/scss/ui/_toasts.scss

23 lines
384 B
SCSS

.toast {
border: $alert-border-width var(--#{$prefix}border-style) $alert-border-color;
box-shadow: $alert-shadow;
.toast-header {
user-select: none;
}
button[data-bs-dismiss='toast'] {
outline: none;
}
@include media-print {
display: none;
}
}
@each $state, $value in $theme-colors {
.toast-#{$state} {
--#{$prefix}toast-color: #{$value};
}
}