0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ひとりアドベントカレンダーチャレンジAdvent Calendar 2024

Day 9

MUIのSelectコンポーネントで青色の枠線を消す方法

Posted at

はじめに

今回は、MUIのSelectコンポーネントで青色の枠線を消す方法を紹介します。

消すために割と時間を使ってしまったので、被害者がこれ以上出ないように...

スクリーンショット 2024-12-15 20.58.08.png

解決法

sxに以下の記述をする

<Select
  sx={{
    // 青い枠線を消す
    '& > fieldset': {
      border: 'none !important',
    },
  }}
/>

fieldsetで制御されていることに気づくのが時間かかりました...

参考

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?