UNPKG

saepequia

Version:

A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps

12 lines (9 loc) 239 B
/* @flow */ export const breakpoints = { medium: 640, large: 1024, }; export const media = Object.keys(breakpoints).reduce((acc, item) => { acc[item] = `@media screen and (min-width: ${breakpoints[item]}px)`; return acc; }, {});