Reputation: 453
I'm working on a project that is using the the U.S. Web Design Standards framework and I have imported all the SASS
files into my main.scss
file:
@import "bourbon/bourbon";
@import "abstracts/variables";
// This imports all the required files
@import "../vendor_files/uswds/src/stylesheets/uswds";
But I'm noticing that some of the grid styles are missing when I run my local server. Just as a test I did a sass compile via my terminal and was able to find the associated grid styles. I can provide additional information if needed.
@angular/cli: 1.6.0
node: 8.8.1
os: darwin x64
@angular/animations: 4.4.6
@angular/common: 4.4.6
@angular/compiler: 4.4.6
@angular/core: 4.4.6
@angular/forms: 4.4.6
@angular/http: 4.4.6
@angular/platform-browser: 4.4.6
@angular/platform-browser-dynamic: 4.4.6
@angular/router: 4.4.6
@angular/cli: 1.6.0
@angular/compiler-cli: 4.4.6
@angular/language-service: 4.4.6
typescript: 2.3.4
My sample repo
npm install
npm start
Note the alignment of the copy A tagline highlights your approach
compared to the Desired behavior below.
I'm expecting the page to look like the one on the USWDS documentation.
Upvotes: 0
Views: 226
Reputation: 453
With the help of a co-worker I was finally able to resolve the issue. I was missing the bourbon-neat
package. Once I installed and added to my scss
file the issue was resolved.
Upvotes: 0