Use class instead of ID for the search form

This commit is contained in:
2026-05-10 16:52:25 +02:00
parent 8f48f3dcb5
commit 679adb4cf9
+2 -2
View File
@@ -26,7 +26,7 @@ import Searchbar from '../features/search/components/Searchbar.vue'
</span> </span>
</header> </header>
<form id="search-form"> <form class="search-form">
<Searchbar /> <Searchbar />
</form> </form>
</template> </template>
@@ -56,7 +56,7 @@ import Searchbar from '../features/search/components/Searchbar.vue'
font-size: small; font-size: small;
} }
#search-form { .search-form {
width: 70%; width: 70%;
max-width: 624px; max-width: 624px;
} }