Browse Source

fix: more profile responsiveness fixes

Kristian Vos 2 years ago
parent
commit
4fa672829f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      frontend/src/pages/Profile/index.vue

+ 2 - 2
frontend/src/pages/Profile/index.vue

@@ -329,7 +329,7 @@ onMounted(() => {
 	}
 
 	.bio-row {
-		max-width: 608px;
+		max-width: calc(min(608px, 100%));
 		margin-bottom: 24px;
 		margin-left: auto;
 		margin-right: auto;
@@ -338,7 +338,7 @@ onMounted(() => {
 	}
 
 	.date-location-row {
-		max-width: 608px;
+		max-width: calc(min(608px, 100%));
 		margin-left: auto;
 		margin-right: auto;
 		margin-bottom: 24px;