We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b21ae5 commit ba63cb0Copy full SHA for ba63cb0
src/homepage/src/screens/home/Animation/index.js
@@ -113,7 +113,7 @@ export default class Animation extends React.PureComponent {
113
/>
114
<Container horizontal>
115
<HomeTitle template={template} />
116
- <Media query="(min-width: 1281px)">
+ <Media query="(min-width: 1280px)">
117
<Cubes
118
canvas={this.state.canvas}
119
templates={this.state.templates}
src/homepage/src/utils/media.js
@@ -2,7 +2,7 @@ import { css } from 'styled-components';
2
3
export default {
4
tablet: (...args) => css`
5
- @media (max-width: 1280px) {
+ @media (max-width: 1279px) {
6
${css(...args)};
7
}
8
`,
0 commit comments