/* Global dbc.layout Style  
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Row Styling - dbc.Row()
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Apply minimal gutters
    
--> accomplishes a "tighter" look/feel to dataset 
    e.g., used for passing large datasets into a dbc.modal() */

.row_minimal_gutters {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}
