feat: add url to site config, add webp support, change image sizing
All checks were successful
Build / build (push) Successful in 4m4s
Build / deploy-stage (push) Successful in 2m40s
Build / switch-stage (push) Successful in 1m56s

This commit is contained in:
2024-12-15 01:27:03 +01:00
parent a967366a9b
commit af66646775
7 changed files with 64 additions and 14 deletions

View File

@@ -46,11 +46,9 @@
/* Size classes apply at all viewports */
.textimage-image-wrapper.size-25 .textimage-picture {
max-width: 300px;
}
.textimage-image-wrapper.size-50 .textimage-picture {
max-width: 600px;
}
/* On larger screens, arrange horizontally for image position settings */
@@ -63,7 +61,15 @@
flex-direction: row-reverse;
}
.textimage-wrapper {
.textimage-image-wrapper.size-25 {
flex: 0 0 25%;
}
.textimage-image-wrapper.size-50 {
flex: 0 0 50%;
}
.textimage-wrapper {
flex: 1;
}
}
}