-
Currently the boxes in my heatmaps have rectangular shape. Can they be made square using a css snippet? Are rounded corners also possible? Thanks a lot in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
samgiz
Nov 5, 2023
Replies: 2 comments
-
This might help: .heatmap-calendar-boxes li {
/* Make boxes square */
aspect-ratio: 1;
/* I believe you should be able to use `border-radius` for rounded corners here */
}
/* This removes the `Mon`/`Wed`/`Fri`/`Sun` labels, otherwise I find the heatmap looks wonky when the note width is small */
.heatmap-calendar-days {
display: none;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tmummert
-
This worked, thank you very much!
At the same time, the Obsidian option |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This might help: