#CSSでMaterial UI(MUI)のボタンのカーソルをnot allowedにする
CSSでMaterial UI(MUI)のボタンのカーソルをnot allowedにするには、下記のようにpointer-events
プロパティにauto
を指定します。詳しくは、こちらを見てください。
/* The MIT License (MIT) Copyright (c) MUI Team */
.MuiButtonBase-root:disabled {
cursor: not-allowed;
pointer-events: auto;
}