You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 558B

1234567891011121314151617181920
  1. /**
  2. * The aspect ratio constant which indicates that the width (of whatever the
  3. * aspect ratio constant is used for) is smaller than the height.
  4. *
  5. * @type {Symbol}
  6. */
  7. export const ASPECT_RATIO_NARROW = Symbol('ASPECT_RATIO_NARROW');
  8. /**
  9. * The aspect ratio constant which indicates that the width (of whatever the
  10. * aspect ratio constant is used for) is larger than the height.
  11. *
  12. * @type {Symbol}
  13. */
  14. export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE');
  15. /**
  16. * Smallest supported mobile width.
  17. */
  18. export const SMALL_MOBILE_WIDTH = '320';