Skip to content

Commit

Permalink
add ui styles required for setup
Browse files Browse the repository at this point in the history
  • Loading branch information
akankshagaur committed Jan 1, 2019
1 parent 5583545 commit 89aa23b
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 14 deletions.
32 changes: 18 additions & 14 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,20 @@
"src/assets"
],
"styles": [
"./node_modules/semantic-ui-table/table.min.css",
"./node_modules/semantic-ui-reset/reset.min.css",
"./node_modules/semantic-ui-input/input.min.css",
"./node_modules/semantic-ui-card/card.min.css",
"src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"fileReplacements": [{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
Expand All @@ -48,13 +50,11 @@
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}
]
"budgets": [{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}]
}
}
},
Expand Down Expand Up @@ -83,6 +83,10 @@
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"./node_modules/semantic-ui-table/table.min.css",
"./node_modules/semantic-ui-reset/reset.min.css",
"./node_modules/semantic-ui-input/input.min.css",
"./node_modules/semantic-ui-card/card.min.css",
"src/styles.scss"
],
"scripts": [],
Expand Down Expand Up @@ -136,4 +140,4 @@
}
},
"defaultProject": "ng-beginner-workshop"
}
}
20 changes: 20 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
"@angular/router": "~7.1.0",
"core-js": "^2.5.4",
"rxjs": "~6.3.3",
"semantic-ui-card": "^2.3.1",
"semantic-ui-input": "^2.4.0",
"semantic-ui-reset": "^2.3.1",
"semantic-ui-table": "^2.3.1",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
Expand Down
5 changes: 5 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
/* You can add global styles to this file, and also import other style files */
body {
background-color: #f9f9f9 !important;
font-size: 15px;
font-family: 'Titillium Web', sans-serif !important;
}

0 comments on commit 89aa23b

Please sign in to comment.