Skip to content

Commit

Permalink
chore(release): 1.1.3 [skip ci]
Browse files Browse the repository at this point in the history
## [1.1.3](v1.1.2...v1.1.3) (2023-03-16)

### Bug Fixes

* add comment ([9fa85c0](9fa85c0))
* link ([f15ed2a](f15ed2a))
  • Loading branch information
semantic-release-bot committed Mar 16, 2023
1 parent 9fa85c0 commit 4c4abdd
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [1.1.3](https://github.com/ocadotechnology/codeforlife-package-javascript/compare/v1.1.2...v1.1.3) (2023-03-16)


### Bug Fixes

* add comment ([9fa85c0](https://github.com/ocadotechnology/codeforlife-package-javascript/commit/9fa85c0e4056641b0897c24ce6e21d93e2bb1183))
* link ([f15ed2a](https://github.com/ocadotechnology/codeforlife-package-javascript/commit/f15ed2a0c3b5d9af53e6831a9ccc31c1b6676e31))

## [1.1.2](https://github.com/ocadotechnology/codeforlife-package-javascript/compare/v1.1.1...v1.1.2) (2023-03-16)


Expand Down
18 changes: 17 additions & 1 deletion lib/cjs/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ var theme = (0, styles_1.responsiveFontSizes)((0, styles_1.createTheme)({
}
},
components: {
MuiGrid2: {
defaultProps: {
disableEqualOverflow: true
}
},
MuiButton: {
styleOverrides: {
root: {
Expand All @@ -32,7 +37,18 @@ var theme = (0, styles_1.responsiveFontSizes)((0, styles_1.createTheme)({
MuiTextField: {
styleOverrides: {
root: {
width: '100%'
width: '100%',
backgroundColor: 'white'
}
}
},
MuiLink: {
defaultProps: {
underline: 'hover'
},
styleOverrides: {
root: {
cursor: 'pointer'
}
}
}
Expand Down
18 changes: 17 additions & 1 deletion lib/esm/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ var theme = responsiveFontSizes(createTheme({
}
},
components: {
MuiGrid2: {
defaultProps: {
disableEqualOverflow: true
}
},
MuiButton: {
styleOverrides: {
root: {
Expand All @@ -30,7 +35,18 @@ var theme = responsiveFontSizes(createTheme({
MuiTextField: {
styleOverrides: {
root: {
width: '100%'
width: '100%',
backgroundColor: 'white'
}
}
},
MuiLink: {
defaultProps: {
underline: 'hover'
},
styleOverrides: {
root: {
cursor: 'pointer'
}
}
}
Expand Down

0 comments on commit 4c4abdd

Please sign in to comment.