diff options
author | Francesco Agosti <francesco.agosti93@gmail.com> | 2018-07-04 05:43:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-04 05:43:02 +0800 |
commit | 0900e0c85e76a34301ad5a336d2b195ed595aef7 (patch) | |
tree | a5031f90ed81a0758712ad9478c1d9201692f08b /packages/website/ts/utils | |
parent | d91b30faef0e53072757dfd5fea86db10dcf838f (diff) | |
parent | 32c25a20341964498c3594758aa02908c98dbfc0 (diff) | |
download | dexon-sol-tools-0900e0c85e76a34301ad5a336d2b195ed595aef7.tar dexon-sol-tools-0900e0c85e76a34301ad5a336d2b195ed595aef7.tar.gz dexon-sol-tools-0900e0c85e76a34301ad5a336d2b195ed595aef7.tar.bz2 dexon-sol-tools-0900e0c85e76a34301ad5a336d2b195ed595aef7.tar.lz dexon-sol-tools-0900e0c85e76a34301ad5a336d2b195ed595aef7.tar.xz dexon-sol-tools-0900e0c85e76a34301ad5a336d2b195ed595aef7.tar.zst dexon-sol-tools-0900e0c85e76a34301ad5a336d2b195ed595aef7.zip |
Merge pull request #811 from 0xProject/feature/website/onboarding-polish-2
Add Hotjar, and other small improvements
Diffstat (limited to 'packages/website/ts/utils')
-rw-r--r-- | packages/website/ts/utils/utils.ts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/packages/website/ts/utils/utils.ts b/packages/website/ts/utils/utils.ts index fc7901463..2cda41545 100644 --- a/packages/website/ts/utils/utils.ts +++ b/packages/website/ts/utils/utils.ts @@ -29,9 +29,6 @@ import { configs } from 'ts/utils/configs'; import { constants } from 'ts/utils/constants'; import * as u2f from 'ts/vendor/u2f_api'; -const LG_MIN_EM = 64; -const MD_MIN_EM = 52; - const isDogfood = (): boolean => _.includes(window.location.href, configs.DOMAIN_DOGFOOD); export const utils = { @@ -136,9 +133,9 @@ export const utils = { // This logic mirrors the CSS media queries in BassCSS for the `lg-`, `md-` and `sm-` CSS // class prefixes. Do not edit these. - if (widthInEm > LG_MIN_EM) { + if (widthInEm > ScreenWidths.Lg) { return ScreenWidths.Lg; - } else if (widthInEm > MD_MIN_EM) { + } else if (widthInEm > ScreenWidths.Md) { return ScreenWidths.Md; } else { return ScreenWidths.Sm; |