I am currently using scss files and I want to adjust the breakpoints within the css code in vuetify version 2.
Unfortunately, I have not been able to locate any information regarding this in the vuetify upgrade guide.
In the previous version 1.5, I utilized style-x.styl for this purpose:
$grid-breakpoints := {
xs: 0
sm: 476px
md: 668px
lg: 1000px
xl: 1300px
}
@import '~vuetify/src/styles/styles.sass';
$material-light.background = #f5f5f5;
@import '~vuetify/src/stylus/main';
After defining these styles, I proceed to import the file:
import '../style-x.styl';
...
Vue.use(Vuetify);
...