Text.vue 418 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="search-bar-wrapper">
  3. <v-text-field
  4. type="text"
  5. class="search-bar"
  6. name="search-query"
  7. outlined
  8. :label="$t('what') + ' ?'"
  9. >
  10. <button
  11. class="search-bar-btn"
  12. name="submit-search"
  13. >
  14. <i class="fas fa-search" />
  15. </button>
  16. </v-text-field>
  17. </div>
  18. </template>
  19. <style>
  20. .v-input__control {
  21. height: 56px;
  22. }
  23. </style>