Skip to content

Commit

Permalink
feat: improve hero section design
Browse files Browse the repository at this point in the history
  • Loading branch information
Me-Phew committed Mar 24, 2024
1 parent d8a394b commit 2baa9e9
Showing 1 changed file with 34 additions and 3 deletions.
37 changes: 34 additions & 3 deletions src/views/AppContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@
/>
</svg>
<!-- eslint-enable max-len -->
<h1 class="description">
<!-- <h1 class="description">
{{ t("app.description") }}
</h1>
</h1> -->
</section>
<i
class="ph-caret-down-light"
Expand Down Expand Up @@ -846,7 +846,38 @@ export default {
}
.wordmark {
height: 5rem;
margin-top: 4rem;
height: 8rem;
}
@media screen and (max-width: 575.98px) {
.wordmark {
height: 5rem;
}
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
.wordmark {
height: 6rem;
}
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
.wordmark {
height: 7rem;
}
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
.wordmark {
height: 8rem;
}
}
@media screen and (min-width: 1200px) {
.wordmark {
height: 9rem;
}
}
}
Expand Down

0 comments on commit 2baa9e9

Please sign in to comment.