/*
Block Name: Spacer
Description: Allows you to add a block and customise the vertical space it occupies.
*/

body.wp-admin .toast-spacer {  padding: 1rem; background: repeating-linear-gradient(
        45deg, /* Angle of the lines */
        #f5f5f5, /* Line colour */
         #f5f5f5 10px, /* Line thickness */
        white 10px, /* Space between lines */
        white 20px /* Total cycle for repetition */
    );
} 
.toast-spacer.admin:before { content: "Spacer Block"; color: var(--brand-4); font-family: inherit; font-size: inherit; padding: 0rem; line-height: 0; } 


.toast-spacer.admin {
   
    background: repeating-linear-gradient(
        45deg, /* Angle of the lines */
        #f5f5f5, /* Line colour */
         #f5f5f5 10px, /* Line thickness */
        white 10px, /* Space between lines */
        white 20px /* Total cycle for repetition */
    );
}