Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
525 B
SCSS
Executable File
19 lines
525 B
SCSS
Executable File
@include deprecate("`alert-variant()`", "v5.3.0", "v6.0.0");
|
|
|
|
// scss-docs-start alert-variant-mixin
|
|
@mixin alert-variant($background, $border, $color) {
|
|
--#{$prefix}alert-color: #{$color};
|
|
--#{$prefix}alert-bg: #{$background};
|
|
--#{$prefix}alert-border-color: #{$border};
|
|
--#{$prefix}alert-link-color: #{shade-color($color, 20%)};
|
|
|
|
@if $enable-gradients {
|
|
background-image: var(--#{$prefix}gradient);
|
|
}
|
|
|
|
.alert-link {
|
|
color: var(--#{$prefix}alert-link-color);
|
|
}
|
|
}
|
|
// scss-docs-end alert-variant-mixin
|