/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/data/material/getting-started/templates/shared-theme/customizations/feedback.js
46 строк
1 KB
Siriwat K
[material-ui][docs] Open Material UI template with CodeSandbox/StackBlitz (#43604)
11 сен 2024, 12:30
Не верифицирован
11 сен 2024, 12:30
ff9406a
Код
Авторство
О чём код?
import { alpha } from '@mui/material/styles'; import { gray, orange } from '../themePrimitives'; /* eslint-disable import/prefer-default-export */ export const feedbackCustomizations = { MuiAlert: { styleOverrides: { root: ({ theme }) => ({ borderRadius: 10, backgroundColor: orange[100], color: (theme.vars || theme).palette.text.primary, border: `1px solid ${alpha(orange[300], 0.5)}`, '& .MuiAlert-icon': { color: orange[500], }, ...theme.applyStyles('dark', { backgroundColor: `${alpha(orange[900], 0.5)}`, border: `1px solid ${alpha(orange[800], 0.5)}`, }), }), }, }, MuiDialog: { styleOverrides: { root: ({ theme }) => ({ '& .MuiDialog-paper': { borderRadius: '10px', border: '1px solid', borderColor: (theme.vars || theme).palette.divider, }, }), }, }, MuiLinearProgress: { styleOverrides: { root: ({ theme }) => ({ height: 8, borderRadius: 8, backgroundColor: gray[200], ...theme.applyStyles('dark', { backgroundColor: gray[800], }), }), }, }, };