Add position/index.scss

This commit is contained in:
0x1eef 2024-05-17 19:47:47 -03:00
parent 959eb4f6fa
commit c2c43ec193
7 changed files with 39 additions and 2 deletions

View file

@ -0,0 +1 @@
-/dist/

22
dist/tail.css vendored

File diff suppressed because one or more lines are too long

BIN
dist/tail.css.gz vendored

Binary file not shown.

2
dist/tail.min.css vendored

File diff suppressed because one or more lines are too long

BIN
dist/tail.min.css.gz vendored

Binary file not shown.

View file

@ -13,3 +13,4 @@
@import "tail/border/index";
@import "tail/outline/index";
@import "tail/whitespace/index";
@import "tail/position/index";

View file

@ -0,0 +1,15 @@
.static {
position: static;
}
.fixed {
position: fixed;
}
.absolute {
position: absolute;
}
.relative {
position: relative;
}
.sticky {
position: sticky;
}