3
2

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】 theme利用時の背景色を変更する

Last updated at Posted at 2020-03-29

概要

  • 環境

    Nuxt.js+Vuetify
  • やりたいこと

    ページ背景色の変更
  • ここで書くこと

    無理やりだが背景色変更はできたので、そのやり方を書く。

    綺麗なやり方を後日追記する(したい)。

結論

assets配下に main.css を作成して以下記入。

css
.v-application--wrap {
  background-color: rgb(160, 235, 150);
}

Vuetifyのthemeを上書きできず大分苦しんだが、今回はcssで無理やり実現させた。
scssで綺麗に上書きするような方法があるらしいので後日それを試してみる。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?