I want to reduce the space between the sections and the component. I tried changing this code to custom css:
@media (min-width: 768px)
.t4-main-body {
padding-top: 3rem;
padding-bottom: 3rem;
}
@media (min-width: 576px)
div[id^="t4-section-"], div[id*="t4-section-"] {
padding-bottom: 60px;
padding-top: 60px;
}
However I then have to do this for each screen width.
Is there an easier way