Reduce embedded button size on mobile

Add this code to the Custom CSS field on the Design tab of your Button widget’s settings:

@media(max-width: 500px) {
	.global-styles, [class^="ButtonContent__Container-sc"] {
		transform: scale(0.9);
	}
}
2 Likes