Skip to content

Commit ba63cb0

Browse files
author
Ives van Hoorne
committed
Update media queries
1 parent 7b21ae5 commit ba63cb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/homepage/src/screens/home/Animation/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export default class Animation extends React.PureComponent {
113113
/>
114114
<Container horizontal>
115115
<HomeTitle template={template} />
116-
<Media query="(min-width: 1281px)">
116+
<Media query="(min-width: 1280px)">
117117
<Cubes
118118
canvas={this.state.canvas}
119119
templates={this.state.templates}

src/homepage/src/utils/media.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { css } from 'styled-components';
22

33
export default {
44
tablet: (...args) => css`
5-
@media (max-width: 1280px) {
5+
@media (max-width: 1279px) {
66
${css(...args)};
77
}
88
`,

0 commit comments

Comments
 (0)