Skip to content

Instantly share code, notes, and snippets.

@AnteaterKit
Created December 25, 2020 15:22
Show Gist options
  • Save AnteaterKit/28179a9f48d46affb5552426d9ed47bc to your computer and use it in GitHub Desktop.
Save AnteaterKit/28179a9f48d46affb5552426d9ed47bc to your computer and use it in GitHub Desktop.
@import '../../core/theme/theming.scss';
@mixin card-color($theme) {
$background: map-get($theme, background);
$card-border-color: map-get($background, card-border);
.ui-card {
border: 1px solid $card-border-color;
}
.ui-card-title {
border-bottom: 1px solid $card-border-color;
}
.ui-card-actions {
border-top: 1px solid $card-border-color;;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment