@mixin debug($background, $outline){
height: 100vh;
position: fixed;
width: 100%;
> div{
height: inherit;
@include container();
> div{
height: inherit;
@include row-flex();
> div{
@include col();
@include size(1);
height: inherit;
outline: $outline;
background: $background;
}
}
}
}
@include debug (rgba (0, 0, 0, 0.5), 1px solid red);