Reducing Padding in Sections

Reducing Padding in Sections

Is there a way to reduce the amount of space around elements in sections in the new UI (see attached photo for an example)? As is, there's far too much empty space and it looks lousy.

Edit: I figured it out! Simply click on a Section, go to the CSS tab, enter a name for the element such as "box", and click "Open Custom CSS Editor". Once the CSS editor is open, use the following code to change the padding size (replace "box" with whatever name you gave the element):

.box {
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}