From a4f88fee78e486b120e030cc0b84608c9c5e24ca Mon Sep 17 00:00:00 2001 From: Paul Graffam Date: Tue, 29 Jan 2019 16:55:05 -0500 Subject: [PATCH] Import styles into project --- src/js/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/js/app.js b/src/js/app.js index 6e5e2a1..061d279 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -2,6 +2,9 @@ import Config from './data/config'; import Detector from './utils/detector'; import Main from './app/main'; +// Styles +import './../css/app.scss'; + // Check environment and set the Config helper if(__ENV__ === 'dev') { console.log('----- RUNNING IN DEV ENVIRONMENT! -----');