richardtallent / vue-simple-calendar

Simple Vue component to show a month-grid calendar with events
MIT License
878 stars 159 forks source link

Cannot change font color for startTime/endTime #208

Closed SincerelyUnique closed 2 years ago

SincerelyUnique commented 2 years ago

Good afternoon, can you help me check why I can't change the font color?

<style lang="scss" scoped>
.div{
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    color: #2c3e50;
    height: 360vh;
    width: 100%;
    margin-left: auto;
    margin-right: auto;

    .theme-default .cv-item .startTime,
    .theme-default .cv-item .endTime {
        font-weight: bold;
        color: white;    // I want to change the color to white, but not works
    }
}

Thank you in advance!!

SincerelyUnique commented 2 years ago

image

SincerelyUnique commented 2 years ago

image

I can't override the color for this css attribute, please help~

SincerelyUnique commented 2 years ago

I remove the "scoped" property and it works, thanks