diff --git a/frontend/src/views/HomePage.vue b/frontend/src/views/HomePage.vue index 1e150270..d5cdb9e6 100644 --- a/frontend/src/views/HomePage.vue +++ b/frontend/src/views/HomePage.vue @@ -23,7 +23,7 @@
- + {{ t("homeTitle") }}

{{ t("homeIntroduction1") }} @@ -32,7 +32,7 @@ @@ -158,6 +158,7 @@ h { font-size: large; font-weight: bold; + align-self: center; padding: 10px; } @@ -169,4 +170,23 @@ text-align: center; padding-bottom: 30px; } + + @media (max-width: 1024px) { + .container_left { + width: 100%; /* Full width on tablets */ + display: flex; + flex-direction: column; + align-items: flex-start; /* Align content to the left */ + justify-content: center; + padding: 20px; + position: relative; /* Ensure child elements are positioned relative to this */ + } + + .container_right { + position: absolute; + top: 10px; /* Adjust top position to align properly */ + right: 70px; /* Keep it in the right corner */ + } +} +