heatmapStyles = html`<style>
.domain {
stroke: transparent;
}
#x-axis text {
text-anchor: start;
transform: rotate(-50deg);
}
@media (min-width: 450px) {
#x-axis text {
transform: rotate(-35deg);
}
}
@media (max-width: 600px) {
#y-axis text {
transform: rotate(-50deg);
}
}
.legendTitle {
font-weight: 700;
}
.legendCells {
transform: translateY(5px);
}
.legendCells .label {
fill: #6C698A;
}
.legendCells .swatch {
stroke: white;
stroke-width: 2;
}
.tick text {
font-size: clamp(.625rem, 3vw, .7rem);
}
</style>
`