Interface MediaBreakpointDict

A dictionary defining media query breakpoints for different device types. Each device type contains a min and max value which can be used to represent either width or height values.

Hierarchy

  • MediaBreakpointDict

Properties

desktop: {
    max: number;
    min: number;
}

Type declaration

  • max: number
  • min: number
mobile: {
    max: number;
    min: number;
}

Type declaration

  • max: number
  • min: number
notebook: {
    max: number;
    min: number;
}

Type declaration

  • max: number
  • min: number
tablet: {
    max: number;
    min: number;
}

Type declaration

  • max: number
  • min: number
tv: {
    max: number;
    min: number;
}

Type declaration

  • max: number
  • min: number