1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-24 14:13:06 +02:00

Add CSS variable for .alert-link

This commit is contained in:
Mark Otto
2022-09-07 16:12:12 -05:00
parent 91a3cf7fd1
commit 5aedf920c0

View File

@@ -3,13 +3,14 @@
--#{$prefix}alert-color: #{$color}; --#{$prefix}alert-color: #{$color};
--#{$prefix}alert-bg: #{$background}; --#{$prefix}alert-bg: #{$background};
--#{$prefix}alert-border-color: #{$border}; --#{$prefix}alert-border-color: #{$border};
--#{$prefix}alert-link-color: #{shade-color($color, 20%)};
@if $enable-gradients { @if $enable-gradients {
background-image: var(--#{$prefix}gradient); background-image: var(--#{$prefix}gradient);
} }
.alert-link { .alert-link {
color: shade-color($color, 20%); color: var(--#{$prefix}alert-link-color);
} }
} }
// scss-docs-end alert-variant-mixin // scss-docs-end alert-variant-mixin