Created
December 25, 2020 15:22
-
-
Save AnteaterKit/28179a9f48d46affb5552426d9ed47bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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