kirby-stats
kirby-stats copied to clipboard
Chart "invisible" in Chrome
Depending on the screen size the chart is not displayed inside its parent container but at the position where it would have been without -webkit-column-count: xy;
.
I fixed this by adding a bit of css to the template.php file in the widgets/stats/ folder:
.field, canvas{ -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }