Skip to content

Commit

Permalink
fix: SM media query value (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
hachiojidev authored Oct 26, 2020
1 parent 72162ed commit 8caae72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/theme/mediaQueries.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { MediaQueries, Breakpoints } from "../styled.d";

export const breakpoints: Breakpoints = ["370px", "512px", "755px", "968px", "1080px"];
export const breakpoints: Breakpoints = ["370px", "576px", "852px", "968px", "1080px"];

const mediaQueries: MediaQueries = {
xs: `@media screen and (min-width: ${breakpoints[0]})`,
Expand Down

0 comments on commit 8caae72

Please sign in to comment.