Skip to content

Commit e78b067

Browse files
committed
Fixed weird layout on mobile
1 parent 6bcdad0 commit e78b067

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

frontend/src/views/Home/AboutUs.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<div id="aboutus" class="content">
99
<v-container>
1010
<HeaderTitle :title="'ABOUT US'" />
11-
<v-row no-gutters justify="end">
11+
<v-row no-gutters justify="start" class="about-info">
1212
<v-col xs="12" sm="6">
1313
<img data-cy="mission-img" contain :src="mission.image" class="image" />
1414
</v-col>
@@ -50,4 +50,10 @@ export default {
5050
.content {
5151
padding-top: 50px;
5252
}
53+
.about-info {
54+
@media screen and (max-width: 900px) {
55+
flex-direction: column;
56+
align-items: center;
57+
}
58+
}
5359
</style>

0 commit comments

Comments
 (0)