kevinsqi / react-calendar-heatmap

An svg calendar heatmap inspired by github's contribution graph
http://www.kevinqi.com/react-calendar-heatmap/
MIT License
1.23k stars 156 forks source link

Weekday labels style don't take any effect #207

Open shivam-880 opened 8 months ago

shivam-880 commented 8 months ago

I was trying to add some space between weekday lables and the graph but it doesn't seem to take any effect!

.react-calendar-heatmap-weekday-labels {
  margin-right: 5px !important;
  padding-right: 5px !important;
}

The only thing that seems to work is:

const weekdayLabels = document.getElementsByClassName('react-calendar-heatmap-weekday-labels');
  console.log(weekdayLabels);
  for (var elem of weekdayLabels) {
    elem.setAttribute('transform', 'translate(7, 14)');
  }

Please explain!