fga-eps-mds/2019.1-unbrake

View on GitHub
unbrake-frontend/src/components/Styles.jsx

Summary

Maintainability
A
0 mins
Test Coverage
const styles = theme => ({
  container: {
    display: "flex",
    flexWrap: "wrap"
  },
  textField: {
    marginLeft: theme.spacing.unit,
    marginRight: theme.spacing.unit
  },
  menu: {
    width: 200
  },
  grid: {
    padding: "5px"
  },
  formControl: {
    margin: theme.spacing.unit,
    minWidth: 200
  },
  form: {
    padding: "30px"
  },
  configuration: {
    minHeight: "100vh"
  },
  checbox_control: {
    margin: "10px"
  },
  checboxSize: {
    minHeight: "80px"
  },
  checbox_field: {
    padding: "2px"
  }
});

export default styles;