Skip to content

Commit af2268e

Browse files
HOTFIX: fixed vuetify styling, migrate css from cdn to css-loader
1 parent 361126c commit af2268e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

public/js/survey-manager.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/assets/js/survey-manager.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
require("./base");
77

88
window.Vue = require("vue");
9-
window.Vuetify = require('vuetify');
10-
Vue.use(Vuetify);
9+
10+
import Vuetify from 'vuetify'
11+
import 'vuetify/dist/vuetify.min.css'
12+
Vue.use(Vuetify)
1113

1214
import VueRouter from 'vue-router';
1315
Vue.use(VueRouter);

resources/views/admin.blade.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<meta name="csrf-token" content="{{csrf_token()}}">
99
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
1010
<link rel="stylesheet" href="https://unpkg.com/survey-knockout/survey.css" />
11-
<link rel="stylesheet" href="https://unpkg.com/vuetify/dist/vuetify.min.css">
1211

1312
<style>
1413
.card--flex-toolbar {

0 commit comments

Comments
 (0)