Section Paddings

Source: Borges Digital

Disable the default heights on Divi > Theme Customizer > General Settings > Layout Settings > (Section Height: 0, Row Height: 0). And here as well: Mobile Styles.

You will now have a consistent design by using CSS paddings instead of changing the parameters manually.

/*---------- SECTION PADDINGS ----------*/

.top {padding-top:80px;}
.top-bottom {padding: 80px 0;}
.bottom {padding-bottom:80px;}

/* ROW PADDINGS  - DESKTOP E TABLET*/
.rtop {padding-top:33px;}
.rtop-bottom {padding: 33px 0;}
.rbottom {padding-bottom:33px;}

/* ROW PADDINGS - MOBILE*/
@media (max-width:767px){
.rtop {padding-top:0;}
.rtop-bottom {padding: 0;}
.rbottom {padding-bottom:0;}
}