Advertisement
Guest User

git apply patch.diff

a guest
Mar 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 2.49 KB | None | 0 0
  1. diff --git a/services/web/src/client/components/common/LayoutBody.js b/services/web/src/client/components/common/LayoutBody.js
  2. index ee7ad7d..5ae5a36 100644
  3. --- a/services/web/src/client/components/common/LayoutBody.js
  4. +++ b/services/web/src/client/components/common/LayoutBody.js
  5. @@ -13,7 +13,7 @@ const styles = theme => ({
  6.      margin: theme.spacing.unit * 7,
  7.    },
  8.    marginBottom: {
  9. -    marginBottom: theme.spacing.unit * 12,
  10. +    marginBottom: theme.spacing.unit * 2,
  11.    },
  12.    widthSmall: {
  13.      width: 'auto',
  14. diff --git a/services/web/src/client/components/common/listings/listingsElement.js b/services/web/src/client/components/common/listings/listingsElement.js
  15. index 359ef9c..7c265ad 100644
  16. --- a/services/web/src/client/components/common/listings/listingsElement.js
  17. +++ b/services/web/src/client/components/common/listings/listingsElement.js
  18. @@ -19,7 +19,7 @@ const styles = theme => ({
  19.          position: 'relative',
  20.          height: '100%',
  21.          width: '100%',
  22. -        maxWidth: 345,
  23. +        // maxWidth: 345,
  24.          margin: 'auto',
  25.          '&:hover': {
  26.              '& $overlay': {
  27. diff --git a/services/web/src/client/components/listing/home.js b/services/web/src/client/components/listing/home.js
  28. index 57bf787..1f3112f 100644
  29. --- a/services/web/src/client/components/listing/home.js
  30. +++ b/services/web/src/client/components/listing/home.js
  31. @@ -61,7 +61,7 @@ const styles = theme => ({
  32.          display: 'grid',
  33.          gridTemplateColumns: 'repeat(auto-fill, minmax(300px, 1fr))',
  34.          gridAutoRows: 'minmax(200px, auto)',
  35. -        gridGap: `${theme.spacing.unit * 2}px`,
  36. +        gridGap: `${theme.spacing.unit * 4}px`,
  37.      },
  38.      settings: {
  39.          width: '100%'
  40. @@ -73,7 +73,8 @@ const styles = theme => ({
  41.          width: '100%',
  42.          height: '100%',
  43.          overflow: 'auto',
  44. -        padding: `${theme.spacing.unit}px`
  45. +        paddingLeft: `${theme.spacing.unit * 4}px`,
  46. +        paddingRight: `${theme.spacing.unit * 4}px`,
  47.      },
  48.      mapContainer: {
  49.          width: '100%',
  50. @@ -339,7 +340,7 @@ class Home extends React.Component {
  51.              <React.Fragment>
  52.                  <AppAppBar/>
  53.                  <div className={classes.root}>
  54. -                    <LayoutBody margin marginBottom width="xlarge">
  55. +                    <LayoutBody marginBottom width="full">
  56.                          <div className={classes.filters}>
  57.                              <SearchForm
  58.                                  searchParams={this.state.searchParams}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement