Lazy load images, truncate headline

This commit is contained in:
@s.roertgen 2024-08-21 11:49:56 +02:00
parent 8a28d39eaf
commit 3889b5f91a
2 changed files with 22 additions and 6 deletions

View file

@ -2632,6 +2632,10 @@ details.collapse summary::-webkit-details-marker {
position: relative;
}
.sticky {
position: sticky;
}
.right-0 {
right: 0px;
}
@ -2656,10 +2660,22 @@ details.collapse summary::-webkit-details-marker {
bottom: -1rem;
}
.top-0 {
top: 0px;
}
.left-0 {
left: 0px;
}
.z-\[1\] {
z-index: 1;
}
.z-50 {
z-index: 50;
}
.float-right {
float: right;
}