diff --git a/index.html b/index.html
index 7f10eab..6599177 100644
--- a/index.html
+++ b/index.html
@@ -9,13 +9,11 @@
-
+
+
Loungebird
-
+
diff --git a/package.json b/package.json
index 4a627bb..8c76b52 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "loungebird-website",
"private": true,
- "version": "2.1.0",
+ "version": "2.2.0",
"type": "module",
"packageManager": "pnpm@9.15.4",
"volta": {
diff --git a/src/components/BentoGrid.module.css b/src/components/BentoGrid.module.css
index b62c350..1cad635 100644
--- a/src/components/BentoGrid.module.css
+++ b/src/components/BentoGrid.module.css
@@ -343,33 +343,30 @@
}
}
-@media (max-width: 480px) {
+@media (max-width: 500px) {
.grid {
- grid-template-columns: repeat(2, 1fr);
+ grid-template-columns: 1fr;
+ grid-auto-rows: minmax(200px, auto);
}
.small,
- .medium {
- grid-column: span 1;
- grid-row: span 1;
- }
-
+ .medium,
.large,
.wide,
.full {
- grid-column: span 2;
+ grid-column: span 1;
grid-row: span 1;
}
.item {
- min-height: 280px;
+ min-height: 200px;
}
.full {
- min-height: 300px;
+ min-height: 240px;
}
.full .image {
- max-height: 200px;
+ max-height: 180px;
}
}