This is a quick question to let me just get started. I am working on a node application and planning to use scss for styling. So my question is if I include bootstrap css file from cdn in my index.html I can not 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
given an error "Can not find variable "link-hover-color"
Do I need to include the bootstrap sass in my project manually and not use the cdn? Since grunt won't let me start the application because of error on link-hover-color
variable