| 123456789101112131415161718192021222324 |
- <template>
- <div class="search-bar-wrapper">
- <v-text-field
- type="text"
- class="search-bar"
- name="search-query"
- outlined
- :label="$t('what') + ' ?'"
- >
- <button
- class="search-bar-btn"
- name="submit-search"
- >
- <i class="fas fa-search" />
- </button>
- </v-text-field>
- </div>
- </template>
- <style>
- .v-input__control {
- height: 56px;
- }
- </style>
|