Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vuetify.js how to exclude ress.css

Is there any way to exclude ress.css from Vuetify? It overrides Bootstrap and my styles. I tried just to delete in from Vuetify directory in node_modules but it didn't help

like image 521
Zoom Avatar asked May 18 '20 18:05

Zoom


Video Answer


1 Answers

You can comment it out in node_modules/vuetify/src/styles/generic/_index.scss as follwoing:

@import './animations.scss';
@import './colors.scss';
// @import './reset.scss';
@import './elevation.scss';
@import './transitions.scss';

But it is an ugly solution.

like image 142
K.H.A. Avatar answered Sep 19 '22 14:09

K.H.A.