Move flexbox to the start page view

This commit is contained in:
2026-05-10 19:04:49 +02:00
parent 1097694a8e
commit e3117110e9
2 changed files with 18 additions and 13 deletions
-4
View File
@@ -31,11 +31,7 @@ import Footer from './features/footer/components/Footer.vue';
<style scoped>
.main-content {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
gap: 60px;
flex-grow: 1;
}
</style>
+9
View File
@@ -33,6 +33,7 @@ const submitSearch = function () {
</script>
<template>
<div class="search-content">
<header class="global-header">
<h1>Seekra</h1>
<span class="slogan">
@@ -43,9 +44,17 @@ const submitSearch = function () {
<form class="search-form" @submit.prevent="submitSearch">
<Searchbar v-model="searchQuery" ref="searchbar" />
</form>
</div>
</template>
<style scoped>
.search-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 60px;
}
.global-header {
text-align: center;
display: flex;