Skip to content

Commit 7c1eecc

Browse files
committed
Added sass and app.module.js
1 parent e9770ee commit 7c1eecc

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

app/js/app.module.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
(function(app) {
2+
app.AppModule =
3+
ng.core.NgModule({
4+
imports: [ ng.platformBrowser.BrowserModule ],
5+
declarations: [ app.AppComponent ],
6+
bootstrap: [ app.AppComponent ]
7+
})
8+
.Class({
9+
constructor: function() {}
10+
});
11+
})(window.app || (window.app = {}));

app/sass/styles.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Template Colors
2+
h1 {
3+
color: #369;
4+
font-family: Arial, Helvetica, sans-serif;
5+
font-size: 250%;
6+
}
7+
body {
8+
margin: 2em;
9+
}

0 commit comments

Comments
 (0)