diff --git a/src/component/calendar/Calendar.jsx b/src/component/calendar/Calendar.jsx index eead0d8..4e66786 100644 --- a/src/component/calendar/Calendar.jsx +++ b/src/component/calendar/Calendar.jsx @@ -94,10 +94,10 @@ export default function Calendar(){ // > // {item.description} // -
+
handleActiveCategory(item.cid)} /> -
diff --git a/src/css/calendar/_calendar.scss b/src/css/calendar/_calendar.scss index f7033c4..f2ab4c2 100644 --- a/src/css/calendar/_calendar.scss +++ b/src/css/calendar/_calendar.scss @@ -50,6 +50,9 @@ &-primary { @include hex-rgba($primary, 0.2); color:$primary; + & label { + color:$primary; + } &:before { @include hex-rgba($primary, 0.8); } @@ -60,6 +63,9 @@ &-warning { @include hex-rgba($warning, 0.2); color:$warning; + & label { + color:$warning; + } &:before { @include hex-rgba($warning, 0.8); } @@ -70,6 +76,9 @@ &-danger { @include hex-rgba($danger, 0.2); color:$danger; + & label { + color:$danger; + } &:before { @include hex-rgba($danger, 0.8); } @@ -80,6 +89,9 @@ &-success { @include hex-rgba($success, 0.2); color:$success; + & label { + color:$success; + } &:before { @include hex-rgba($success, 0.8); }