mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-10-21 11:37:21 +00:00

* feat: add theme berry * docs: add development notes * fix: fix blank page * chore: update implementation * fix: fix package.json * chore: update ui copy --------- Co-authored-by: JustSong <songquanpeng@foxmail.com>
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
import { styled } from '@mui/material/styles';
|
|
import { Container } from '@mui/material';
|
|
|
|
const AdminContainer = styled(Container)(({ theme }) => ({
|
|
[theme.breakpoints.down('md')]: {
|
|
paddingLeft: '0px',
|
|
paddingRight: '0px'
|
|
}
|
|
}));
|
|
|
|
export default AdminContainer;
|