22 lines
264 B
CSS
22 lines
264 B
CSS
@layer utility {
|
|
.position-static {
|
|
position: static;
|
|
}
|
|
|
|
.position-fixed {
|
|
position: fixed;
|
|
}
|
|
|
|
.position-absolute {
|
|
position: absolute;
|
|
}
|
|
|
|
.position-relative {
|
|
position: relative;
|
|
}
|
|
|
|
.position-sticky {
|
|
position: sticky;
|
|
}
|
|
}
|