Skip to content

Commit

Permalink
Merge pull request #214 from sofarsounds/develop
Browse files Browse the repository at this point in the history
V6.0.1
  • Loading branch information
liondedan authored Jan 27, 2020
2 parents 8d7f021 + 5cae8cc commit cf44fe4
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 5 deletions.
31 changes: 31 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!--- Provide a general summary of your changes in the Title above -->

### Description
<!--- Describe your changes in detail -->

### Motivation and Context
<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->

### How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->

### Screenshots (if appropriate):

### Types of changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Improvement (non-breaking change which improves functionality or refactors code)
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

### Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
- [ ] My code follows the code style of this project.
- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly.
- [ ] I have added tests to cover my changes.
- [ ] All new and existing tests passed.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sofarsounds/maestro",
"version": "6.0.0",
"version": "6.0.1",
"description": "The official sofar sounds react uikit library",
"main": "dist/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/atoms/Grid/__snapshots__/Grid.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -291,13 +291,13 @@ exports[`Grid renders the Grid correctly 1`] = `
grid-gap: 15px;
}
@media (min-width:768px) {
@media (min-width:576px) {
.c1 {
grid-column-end: span 4;
}
}
@media (min-width:992px) {
@media (min-width:768px) {
.c1 {
grid-column-end: span 4;
}
Expand Down
4 changes: 2 additions & 2 deletions src/atoms/Grid/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ export const Col = styled.div<ColProps>`
grid-row: span ${rowSpan || 'auto'};
${sm &&
theme.media.md`
theme.media.sm`
grid-column-end: span ${sm};
`}
${md &&
theme.media.lg`
theme.media.md`
grid-column-end: span ${md};
`}
Expand Down

0 comments on commit cf44fe4

Please sign in to comment.