new smal image section

This commit is contained in:
2023-01-18 17:24:21 +02:00
parent 2974b43bde
commit 22426c4bdf
5 changed files with 56 additions and 2 deletions

View File

@ -1646,6 +1646,10 @@ select {
height: 14rem;
}
.h-60 {
height: 15rem;
}
.h-24 {
height: 6rem;
}
@ -2216,14 +2220,34 @@ select {
background-clip: padding-box;
}
.bg-bottom {
background-position: bottom;
.bg-left-top {
background-position: left top;
}
.bg-left {
background-position: left;
}
.bg-left-bottom {
background-position: left bottom;
}
.bg-top {
background-position: top;
}
.bg-center {
background-position: center;
}
.bg-bottom {
background-position: bottom;
}
.bg-right-top {
background-position: right top;
}
.bg-right-bottom {
background-position: right bottom;
}