Is there a way to change the shape of the event from a square to a parallelogram? Here is an example in the image below:
https://i.sstatic.net/hKtz7.png
I attempted to modify the CSS with the code snippet below:
.fc-event-container{
background-color:rgba(2,2,2,0.9);
float:left;
Skew
-webkit-transform: skew(-60deg);
-moz-transform: skew(-60deg);
-o-transform: skew(-60deg);
transform: skew(-60deg);
}
Unfortunately, this resulted in distorting the event container as shown in the following image: