@superflycss/utilities-layout
Version:
60 lines (49 loc) • 1.11 kB
CSS
/** @define utilities */
@import "@superflycss/variables-dimension";
@media (--lg-viewport) {
@each $position in static, relative, absolute, fixed {
.-u-lg-position-$(position) {
position: $(position) ;
}
}
.-u-lg-top-right {
position: absolute ;
top: 0 ;
right: 0 ;
}
.-u-lg-tr {
position: absolute ;
top: 0 ;
right: 0 ;
}
.-u-lg-top-left {
position: absolute ;
top: 0 ;
left: 0 ;
}
.-u-lg-tl {
position: absolute ;
top: 0 ;
left: 0 ;
}
.-u-lg-bottom-right {
position: absolute ;
bottom: 0 ;
right: 0 ;
}
.-u-lg-br {
position: absolute ;
bottom: 0 ;
right: 0 ;
}
.-u-lg-bottom-left {
position: absolute ;
bottom: 0 ;
left: 0 ;
}
.-u-lg-bl {
position: absolute ;
bottom: 0 ;
left: 0 ;
}
}