// NibblePoker CSS Theme - CC0 1.0 (Public Domain) /* Utils > Positions */ @mixin position-maker($position-type) { .p-#{$position-type} { position: #{$position-type}; } } @include position-maker(static); @include position-maker(relative); @include position-maker(absolute); @include position-maker(fixed); @include position-maker(sticky); .top-0 { top: 0; } .bottom-0 { bottom: 0; } .left-0 { left: 0; } .right-0 { right: 0; }