network-resurrector/frontend/src/features/dashboard/styles.js

11 lines
148 B
JavaScript

const styles = theme => ({
alert: {
width: "100%",
"& > * + *": {
marginTop: theme.spacing(1)
}
}
});
export default styles;