satyamr196's picture
added React app files for testing, build commands added to the readme.md metadata
e7185a2
raw
history blame contribute delete
268 Bytes
// styles/media.js
export const sizes = {
mobile: '480px',
tablet: '768px',
laptop: '1200px',
};
export const media = {
mobile: `(max-width: ${sizes.mobile})`,
tablet: `(max-width: ${sizes.tablet})`,
laptop: `(max-width: ${sizes.laptop})`,
};