16 lines
271 B
SCSS
16 lines
271 B
SCSS
@mixin ui-cards-theme($theme) {
|
|
$foreground: map-get($theme, foreground);
|
|
|
|
app-alert-config {
|
|
.content {
|
|
&.source {
|
|
.cards {
|
|
.card {
|
|
border-bottom-color: map-get($foreground, divider);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|