Default Bloc Padding

I was just wondering about things that I do almost by rote - one of these is set the Bloc Padding to a much lower level. The default is 100px, but I usually have it at 20.

What do you do, and should it be set differently t start with, or even a preference?

Just idle thinking on my part - not a request to @Norm

Save one as a Bloc. Then use it when ever you want.

I usually find myself changing them manually each time I add a new bloc. But you could create a class of .bloc and set it to 20px padding.

1 Like

But isn’t creating a custom class and applying it as time consuming as changing the setting in the panel

I was more wondering if I am out of step by changing almost all new blocs to a lower padding

I usually use different paddings for different breakpoints. Smaller paddings on mobile, a bit more padding on larger screen sizes. Depends on the content really.

No, it’s not a custom class, it’s a class that gets added automatically to all Blocs. So creating a .bloc class will affect all new blocs by default, you won’t need to add a class each time.

1 Like

Cool, thanks!