5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vuetifyのv-messagesのmin-heightを0pxにしたい

Last updated at Posted at 2019-11-27

背景

  • エラー文言とかを入れるdivがvuetify使うとデフォルトでついてくる
  • デフォルトはmin-height 12pxだからレイアウトが結構崩れるので0pxにしたい

解決

  • deep selectorで解決
<style>
>>>.v-messages {
  min-height: 0px !important;
}
</style>

参考

5
3
1

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
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?