add icons

This commit is contained in:
@s.roertgen 2024-08-21 11:30:32 +02:00
parent 2f9ce41175
commit 8a28d39eaf
2 changed files with 84 additions and 12 deletions

View file

@ -2616,10 +2616,46 @@ details.collapse summary::-webkit-details-marker {
visibility: collapse;
}
.static {
position: static;
}
.fixed {
position: fixed;
}
.absolute {
position: absolute;
}
.relative {
position: relative;
}
.right-0 {
right: 0px;
}
.bottom-0 {
bottom: 0px;
}
.right-5 {
right: 1.25rem;
}
.right-12 {
right: 3rem;
}
.-bottom-2 {
bottom: -0.5rem;
}
.-bottom-4 {
bottom: -1rem;
}
.z-\[1\] {
z-index: 1;
}
@ -2686,6 +2722,10 @@ details.collapse summary::-webkit-details-marker {
height: 16rem;
}
.h-12 {
height: 3rem;
}
.min-h-\[620px\] {
min-height: 620px;
}
@ -2722,6 +2762,10 @@ details.collapse summary::-webkit-details-marker {
width: 50%;
}
.w-12 {
width: 3rem;
}
.max-w-xs {
max-width: 20rem;
}
@ -2861,6 +2905,11 @@ details.collapse summary::-webkit-details-marker {
background-color: rgb(34 197 94 / var(--tw-bg-opacity));
}
.bg-white {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.object-contain {
-o-object-fit: contain;
object-fit: contain;