解決方案是將其新增至 global.scss 檔案:
@layer components { .inputDarkModeOverride { &:-webkit-autofill { box-shadow: 0 0 0 30px #1c1c1d inset; } &:-webkit-autofill:hover { box-shadow: 0 0 0 30px #1c1c1d inset; } &:-webkit-autofill:focus { box-shadow: 0 0 0 30px #1c1c1d inset; } &:-webkit-autofill:active { box-shadow: 0 0 0 30px #1c1c1d inset; } } }
然後在輸入屬性中加入className={`${styles.input} dark:inputDarkModeOverride`}。
className={`${styles.input} dark:inputDarkModeOverride`}
解決方案是將其新增至 global.scss 檔案:
然後在輸入屬性中加入
className={`${styles.input} dark:inputDarkModeOverride`}
。