Padding is only on right and bottom side

Problem: I create a div/rect shape and double click to enter text. Then I add a. css class with padding. The padding should be on all 4 sides. Whatever padding css you throw at it, the padding is always performed on the right and bottom side.

How can I get padding on all four sides. Is this a bug?

Saola Animate version: 3.0.1

OS: Mac OS Monterey

Notes:

Hi Hans,

The element text div is a grandchild of the element div, so you should use a CSS selector as follows:

.class-name > div > div {
	padding: 30px;
}

Regards

That makes sense. Thank you, it works great.