If my view templates use some standard html components (links, buttons etc), how can I get them to look like the kendo components if im using the bootstrap theme?
In angular.json, Im using
"styles": [
"node_modules/@progress/kendo-theme-bootstrap/dist/all.css"
],
So If I want to use bootstrap for html elements that are NOT kendo components, I suppose I would need to include the generic bootstrap module as well, so this?
"styles": [
//"src/styles.css"
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/@progress/kendo-theme-bootstrap/dist/all.css"
],
"scripts": [
"node_modules/bootstrap/dist/js/bootstrap.min.js"
]