mengxiong10 / vue2-datepicker

A datepicker / datetimepicker component for Vue2
https://mengxiong10.github.io/vue2-datepicker/index.html
MIT License
1.52k stars 407 forks source link

How can I change the overall font size? #712

Open bernardwiesner opened 2 years ago

bernardwiesner commented 2 years ago

I am trying to change the overall font size for the calendar and time table. I can change individual css like:

.mx-table-date {
  td,
  th {
    height: 32px;
    font-size: 16px;
  }
}

But how can I increase the overall font size? Or must I do it individually for every css selector? Actually I just want to increase the overall size of the calendar.

dfkkg commented 1 year ago

Try this:

.mx-table-date td, .mx-table-date th {
    height: 32px;
    font-size: 15px;
}

if not works - add " !important" for params