LoginSignup
1
0

More than 3 years have passed since last update.

Vuetifyでprepend-inner-iconで指定したFont Awesomeのアイコンだけ小さくしたい

Last updated at Posted at 2019-09-12

Vuetifyでv-text-fieldにprepend-inner-iconを設定すると、material designのアイコンだとちょうどいいのにFont Awesomeだとバカでかいアイコンになってしまう現象がある。

標準がコレ

2019-09-12 (2).png

特に両者を併用したい場合などは目立ちすぎて仕方がない。
Font Awesomeのみ小さくしてみよう。

<style>
.v-input__icon--prepend-inner .fas {
  font-size:18px;
}
</style>

これでだいたい同じくらいの大きさになる。

2019-09-12 (1).png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0