Skip to content
Snippets Groups Projects
Commit 1319701c authored by Neuber, Eugen Ramon's avatar Neuber, Eugen Ramon :speech_balloon: Committed by Reiter, Christoph
Browse files

Add bulma.css to dependencies

parent abe9f0c9
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,7 @@
"vpu-common": "file:./vendor/common"
},
"dependencies": {
"bulma": "^0.7.5",
"@webcomponents/webcomponentsjs": "^2.2.10",
"datatables.net-dt": "^1.10.19",
"datatables.net-responsive": "^2.2.3",
......
......@@ -9,6 +9,8 @@ import en from '../assets/datatables/i18n/English';
import * as commonUtils from 'vpu-common/utils';
import {getAssetURL} from "./utils";
import * as utils from "./utils";
import bulmaCSSPath from "bulma/css/bulma.min.css";
dt(window, $);
resp(window, $);
......@@ -96,9 +98,12 @@ class DataTableView extends LitElement {
}
render() {
const bulmaCSS = utils.getAssetURL(bulmaCSSPath);
let dt_css = getAssetURL('local/vpu-data-table-view/css/jquery.dataTables.min.css');
let rs_css = getAssetURL('local/vpu-data-table-view/css/responsive.dataTables.css');
return html`
<link rel="stylesheet" href="${bulmaCSS}">
<link rel="stylesheet" href="${dt_css}">
<link rel="stylesheet" href="${rs_css}">
<style>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment