'Vuetify custom xxs breakpoint

I'm trying to implement another xxs breakpoint for vuetify to adjust the UI of my project for screens with very small screens (Iphone 5 / SE, Nexus 5 etc..).

I've tried adding the threshold inside the vuetify config in my nuxt.config.js but without success so far.


vuetify: {
  breakpoint: {
      thresholds: {
        xxs: 350,
        xs: 600,
        sm: 960,
        md: 1264,
        lg: 1904,
      },
      scrollBarWidth: 24,
    }
}

How do I not just customize the existing breakpoints but create a new breakpoint?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source