This commit is contained in:
Felix Roos 2022-03-18 19:53:52 +01:00
parent 88bcfc5e48
commit c263eac7fd
10 changed files with 93 additions and 15 deletions

View file

@ -933,6 +933,9 @@ select {
.static {
position: static;
}
.fixed {
position: fixed;
}
.absolute {
position: absolute;
}
@ -955,9 +958,15 @@ select {
.bottom-2 {
bottom: 0.5rem;
}
.right-4 {
right: 1rem;
}
.z-\[10\] {
z-index: 10;
}
.z-\[11\] {
z-index: 11;
}
.block {
display: block;
}