improve responsiveness
This commit is contained in:
parent
fab03fac0c
commit
636324deea
4 changed files with 7 additions and 5 deletions
|
@ -26,7 +26,7 @@ onMounted (async () => {
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="max-w-5xl m-auto">
|
<main class="flex flex-col">
|
||||||
<RouterView>
|
<RouterView>
|
||||||
</RouterView>
|
</RouterView>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
@ -3,5 +3,7 @@ import TheSearch from '@/components/TheSearch.vue';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<TheSearch />
|
<div class="w-screen bg-background-100 dark:bg-background-900 p-2">
|
||||||
|
<TheSearch />
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
|
@ -10,7 +10,7 @@ onUpdated(() => updateSearch(searchValue, searchType));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<form class="sticky top-2 flex flex-row place-content-center m-2">
|
<form class="sticky top-2 flex flex-row place-content-center">
|
||||||
<label class="hidden" for="searchBar">Suche</label>
|
<label class="hidden" for="searchBar">Suche</label>
|
||||||
<div class="flex flex-row w-full max-w-5xl gap-2">
|
<div class="flex flex-row w-full max-w-5xl gap-2">
|
||||||
<input
|
<input
|
||||||
|
|
|
@ -7,9 +7,9 @@ import SearchBar from '@/components/SearchBar.vue'
|
||||||
<template>
|
<template>
|
||||||
<SearchBar />
|
<SearchBar />
|
||||||
<div
|
<div
|
||||||
class="flex flex-row"
|
class="flex flex-row place-content-center xl:w-3/4 place-self-center"
|
||||||
>
|
>
|
||||||
<FilterSidebar />
|
<FilterSidebar />
|
||||||
<TopicList />
|
<TopicList class="grow" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
Loading…
Reference in a new issue