diff --git a/generate/build.tsx b/generate/build.tsx
index 0338899..bab9dc0 100644
--- a/generate/build.tsx
+++ b/generate/build.tsx
@@ -123,7 +123,7 @@ Object.keys(items).forEach((year) => {
const html = renderToString(
-
+
{Object.keys(items).sort().reverse().map((year) => (
= 40rem) {
- height: calc(1/2 * 100%);
+ grid-column: span 2;
}
}
- .sm\:w-1\/2 {
+ .sm\:\[grid-template-columns\:repeat\(auto-fill\,minmax\(256px\,1fr\)\)\] {
@media (width >= 40rem) {
- width: calc(1/2 * 100%);
+ grid-template-columns: repeat(auto-fill,minmax(256px,1fr));
}
}
- .lg\:h-1\/3 {
- @media (width >= 64rem) {
- height: calc(1/3 * 100%);
+ .md\:\[grid-column\:span_2\] {
+ @media (width >= 48rem) {
+ grid-column: span 2;
}
}
- .lg\:w-1\/3 {
+ .lg\:\[grid-column\:span_2\] {
@media (width >= 64rem) {
- width: calc(1/3 * 100%);
+ grid-column: span 2;
+ }
+ }
+ .lg\:grid-cols-3 {
+ @media (width >= 64rem) {
+ grid-template-columns: repeat(3, minmax(0, 1fr));
+ }
+ }
+ .lg\:grid-cols-4 {
+ @media (width >= 64rem) {
+ grid-template-columns: repeat(4, minmax(0, 1fr));
+ }
+ }
+ .lg\:grid-cols-5 {
+ @media (width >= 64rem) {
+ grid-template-columns: repeat(5, minmax(0, 1fr));
+ }
+ }
+ .xl\:\[grid-column\:span_2\] {
+ @media (width >= 80rem) {
+ grid-column: span 2;
+ }
+ }
+ .xl\:\[grid-template-columns\:repeat\(auto-fill\,minmax\(128px\,1fr\)\)\] {
+ @media (width >= 80rem) {
+ grid-template-columns: repeat(auto-fill,minmax(128px,1fr));
+ }
+ }
+ .xl\:\[grid-template-columns\:repeat\(auto-fill\,minmax\(200px\,1fr\)\)\] {
+ @media (width >= 80rem) {
+ grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
+ }
+ }
+ .xl\:\[grid-template-columns\:repeat\(auto-fill\,minmax\(512px\,1fr\)\)\] {
+ @media (width >= 80rem) {
+ grid-template-columns: repeat(auto-fill,minmax(512px,1fr));
+ }
+ }
+ .xl\:grid-cols-7 {
+ @media (width >= 80rem) {
+ grid-template-columns: repeat(7, minmax(0, 1fr));
+ }
+ }
+ .xl\:grid-cols-8 {
+ @media (width >= 80rem) {
+ grid-template-columns: repeat(8, minmax(0, 1fr));
}
}
.xl\:text-3xl {
diff --git a/generate/templates/YearPhotos.tsx b/generate/templates/YearPhotos.tsx
index aea442a..2b2b71a 100644
--- a/generate/templates/YearPhotos.tsx
+++ b/generate/templates/YearPhotos.tsx
@@ -13,7 +13,7 @@ export default function YearPhotos({ year, images }: YearPhotosProps) {
1.05 ? "[grid-column:span_2] aspect-[2/1]" : "aspect-square"
+ aspectRatio < 0.95 ? "" : aspectRatio > 1.05 ? "lg:[grid-column:span_2]" : "aspect-square"
}`}
key={`${year}-${image.id}`}
data-slide-name={image.id}