mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Merge pull request #106 from TeamPiped/fix/search-mobile
Make search bar drop underneath nav on mobile
This commit is contained in:
commit
21ef4d01c0
1 changed files with 10 additions and 1 deletions
11
src/App.vue
11
src/App.vue
|
@ -17,7 +17,7 @@
|
|||
/>iped</router-link
|
||||
>
|
||||
</div>
|
||||
<div class="uk-navbar-center uk-flex">
|
||||
<div class="uk-navbar-center uk-flex uk-visible@s">
|
||||
<input
|
||||
class="uk-input"
|
||||
type="text"
|
||||
|
@ -40,6 +40,15 @@
|
|||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="uk-container-expand uk-hidden@s">
|
||||
<input
|
||||
class="uk-input"
|
||||
type="text"
|
||||
placeholder="Search"
|
||||
v-model="searchText"
|
||||
@keypress="onChange($event)"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<router-view />
|
||||
|
||||
|
|
Loading…
Reference in a new issue