From 4f9ad0d3fafed7e0e127f756f9bee62fd45f5775 Mon Sep 17 00:00:00 2001 From: Kamil Niemczycki Date: Sun, 25 Apr 2021 20:38:50 +0200 Subject: [PATCH] Changed CSS to SASS Facilitating work on the project with the use of css styles. It allows you to implement functions from other packages, e.g. bootstrap. --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 4a2e928..ff81a35 100644 --- a/src/main.js +++ b/src/main.js @@ -2,7 +2,7 @@ import Vue from 'vue' import App from './App.vue' import router from './router' import 'bootstrap' -import 'bootstrap/dist/css/bootstrap.min.css' +import 'bootstrap/scss/bootstrap.scss' Vue.config.productionTip = false