Skip to content

Instantly share code, notes, and snippets.

@pigeonfresh
Created January 20, 2021 12:11
Show Gist options
  • Save pigeonfresh/e0956445a2becad3a3dd176731af9e68 to your computer and use it in GitHub Desktop.
Save pigeonfresh/e0956445a2becad3a3dd176731af9e68 to your computer and use it in GitHub Desktop.
if (process.env.NODE_ENV === 'development') {
import('qa-tools').then((tools: any) => {
const props = {
maxWidth: 'var(--content-wrapper-max-width)',
padding: 'var(--content-wrapper-side-padding)',
gridGap: 'var(--grid-gap)',
gridColumns: 'var(--columns)',
color: 'var(--color-violet)',
};
tools.gridOverlay(props);
}).catch(() => console.warn('something is wrong 🙄'))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment