Just a quick inquiry to kick things off. I'm currently developing a node application and considering using SCSS for styling. My question is, if I include the Bootstrap CSS file from a CDN in my index.html, will I be unable to override the variables?
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
For example:
a:hover, a:focus {
padding-bottom: 5px;
text-decoration: none;
border-bottom: 1px solid $link-hover-color;
}
The variable $link-hover-color
triggers an error "Can not find variable "link-hover-color"
Should I manually include the Bootstrap SASS in my project and refrain from using the CDN? Grunt is preventing me from starting the application due to errors regarding the link-hover-color
variable.