Skip to content

Commit

Permalink
Flow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaughn committed Sep 19, 2017
1 parent dfcb5e1 commit 401d749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/src/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const SIZES = {
type Size = $Keys<typeof SIZES>;

const media = {
between(smallKey: Size, largeKey: Size, excludeLarge: Boolean = false) {
between(smallKey: Size, largeKey: Size, excludeLarge: boolean = false) {
if (excludeLarge) {
return `@media (min-width: ${SIZES[smallKey].min}px) and (max-width: ${SIZES[largeKey].min - 1}px)`;
} else {
Expand Down

0 comments on commit 401d749

Please sign in to comment.