Hi support. Is it possible to apply a clip-path to control the shape of a button. My goal is to have a rectangle with the bottom left corner cut (a pentagon). I have used CSS Clip Path Maker https://bennettfeely.com/clippy/ to make this code:
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 33% 100%, 0 69%);
clip-path: polygon(0 0, 100% 0, 100% 100%, 33% 100%, 0 69%);
I have tried to put this code in the Element CSS of the button element without success.