2017-10-13 11:13:46 -05:00
|
|
|
/**
|
2017-11-07 08:28:08 -06:00
|
|
|
* The aspect ratio constant which indicates that the width (of whatever the
|
|
|
|
|
* aspect ratio constant is used for) is smaller than the height.
|
2017-10-13 11:13:46 -05:00
|
|
|
*
|
|
|
|
|
* @type {Symbol}
|
|
|
|
|
*/
|
|
|
|
|
export const ASPECT_RATIO_NARROW = Symbol('ASPECT_RATIO_NARROW');
|
|
|
|
|
|
|
|
|
|
/**
|
2017-11-07 08:28:08 -06:00
|
|
|
* The aspect ratio constant which indicates that the width (of whatever the
|
|
|
|
|
* aspect ratio constant is used for) is larger than the height.
|
2017-10-13 11:13:46 -05:00
|
|
|
*
|
|
|
|
|
* @type {Symbol}
|
|
|
|
|
*/
|
|
|
|
|
export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE');
|
2021-06-30 12:01:47 +03:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Smallest supported mobile width.
|
|
|
|
|
*/
|
|
|
|
|
export const SMALL_MOBILE_WIDTH = '320';
|
2025-05-05 16:47:38 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The width for desktop that we start hiding elements from the UI (video quality label, filmstrip, etc).
|
|
|
|
|
* This should match the value for $verySmallScreen in _variables.scss.
|
|
|
|
|
*
|
|
|
|
|
* @type {number}
|
|
|
|
|
*/
|
|
|
|
|
export const SMALL_DESKTOP_WIDTH = 500;
|