Files
nebula.js/commands/serve/web/components/Hub/styles.js
Tobias Åström a0dc0f0ce1 fix(cli-serve): OAuth instance cache issue (#1500)
* fix: client id cache issue

* chore: fix originurl

---------

Co-authored-by: a-m-dev <a.mirzaei.dev@gmail.com>
2024-03-05 16:39:36 +01:00

24 lines
746 B
JavaScript

import Box from '@mui/material/Box';
import { styled } from '@mui/system';
import Stepper from '@mui/material/Stepper';
import StepLabel from '@mui/material/StepLabel';
export const ContentWrapper = styled(Box)(({ theme, marginTop = 0 }) => ({
position: 'relative',
padding: theme.spacing(2, 2),
backgroundColor: 'white',
borderRadius: theme.spacing(1),
marginTop: theme.spacing(marginTop),
}));
export const StepperWrapper = styled(Stepper)(({ theme }) => ({
backgroundColor: 'transparent',
padding: theme.spacing(3),
}));
export const CustomStepLabel = styled(StepLabel, {
shouldForwardProp: (prop) => prop !== 'shouldBePointer',
})(({ shouldBePointer = false }) => ({
cursor: shouldBePointer ? 'pointer' : 'default',
}));