We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d15f5ad commit c7028c9Copy full SHA for c7028c9
src/app/TopNav.vue
@@ -1,12 +1,10 @@
1
<template>
2
<div class="d-flex align-items-center mb-2">
3
- <button class="btn navbar-toggler text-white d-md-none" @click="store.showMenu">
+ <button class="btn navbar-toggler text-white d-md-none me-2" @click="store.showMenu">
4
<Icon icon="nav" />
5
</button>
6
7
- <div class="ms-auto" />
8
-
9
- <SearchForm class="mx-2" />
+ <SearchForm class="flex-grow-1 flex-md-grow-0 ms-auto me-2" />
10
11
<template v-if="store.username">
12
<b-dropdown variant="link" right no-caret toggle-class="px-0">
src/library/search/SearchForm.vue
@@ -1,5 +1,5 @@
- <form class="form-inline" @submit.prevent="search">
+ <form @submit.prevent="search">
<input
v-model="query"
class="form-control" type="search"
0 commit comments