3
1

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 1 year has passed since last update.

Material UIのスタイルをカスタマイズする方法

Posted at

Material UI v5でのカスタマイズ法です。styledでのカスタマイズ法を書きます。

カスタマイズの仕方

TextFiledを例に使います。こんな感じです。

import { styled } from "@mui/system"
import { TextField } from '@mui/material'

const CustomTextFiled = styled(TextFiled)({
    backgroundColor: "black"
})

これで背景を黒色にすることができました。

Screen Shot 2022-04-25 at 20.25.58.png

次にアウトラインも黒にしてみましょう。Material UIのカスタマイズで躓くことがあるとすれば、ここですね。

上記にそのままborder: "none"といったように書いてもborderは消えません。なぜならTextFiled内のネスとしているコンポーネント内でスタイリングされているからです。

まず、開発者ツールから青いアウトラインのスタイリングをしている要素を探します。

Screen Shot 2022-04-25 at 20.30.15.png

filedsetにborder-colorがありました。どこでスタイリングされているか分かったのでコードに書きます。奥深い要素のスタイリングをするときはsxを使います。書き方はSCSSのような感じです。

import sx from "@mui/system/sx"

const CustomTextFiled = styled(TextFiled)(sx({
    backgroundColor: "black"
    "& .MuiOutlinedInput-root": {
        "&:not(:focus) fieldset": {
            border: "none",
        },
        "& fieldset": {
            borderColor: "none",
        },
        "&:hover fieldset": {
            borderColor: "none",
        },
    }
}))

これでTextFieldを真っ黒にすることができました。

Screen Shot 2022-04-25 at 20.41.41.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?