Merge pull request #1375 from blackpidgeon/sass-fix

Don't overwrite the bg-variant mixin
This commit is contained in:
Cüneyt Şentürk 2020-04-18 14:54:18 +03:00 committed by GitHub
commit 2d3b44d267
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 14 deletions

View File

@ -44,7 +44,7 @@
"vue-clipboard2": "^0.3.1",
"vue-flatpickr-component": "^8.1.3",
"vue-router": "^3.1.3",
"vue2-transitions": "^0.2.3"
"vue2-transitions": "^0.3.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.11.0",

View File

@ -1,16 +1,3 @@
// Contextual backgrounds
@mixin bg-variant($parent, $color) {
#{$parent} {
background-color: $color !important;
}
a#{$parent},
button#{$parent} {
@include hover-focus {
background-color: darken($color, 10%) !important;
}
}
}
@mixin bg-gradient-variant($parent, $color) {
#{$parent} {
background: linear-gradient(87deg, $color 0, adjust-hue($color, 25%) 100%) !important;