Skip to content

Commit 1e2c846

Browse files
committed
Restore styles from libraries
1 parent d6cb82c commit 1e2c846

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

.angular-cli.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"testTsconfig": "tsconfig.spec.json",
2020
"prefix": "app",
2121
"styles": [
22-
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
23-
"../node_modules/font-awesome/css/font-awesome.css",
22+
"node_modules/bootstrap/dist/css/bootstrap.min.css",
23+
"node_modules/font-awesome/css/font-awesome.css",
2424
"styles.css"
2525
],
2626
"scripts": [],

angular.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
"src/assets"
2929
],
3030
"styles": [
31-
"src/styles.scss"
31+
"node_modules/bootstrap/dist/css/bootstrap.min.css",
32+
"node_modules/font-awesome/css/font-awesome.css",
33+
"src/styles.css"
3234
],
3335
"scripts": []
3436
},

package-lock.json

+12-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
"@angular/platform-browser": "~9.0.6",
2020
"@angular/platform-browser-dynamic": "~9.0.6",
2121
"@angular/router": "~9.0.6",
22+
"bootstrap": "^4.4.1",
2223
"fabric": "^3.6.3",
24+
"font-awesome": "^4.7.0",
2325
"ngx-color-picker": "^9.1.0",
2426
"rxjs": "~6.5.4",
2527
"tslib": "^1.10.0",

src/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<base href="/">
77
<meta name="viewport" content="width=device-width, initial-scale=1">
88
<link rel="icon" type="image/x-icon" href="favicon.ico">
9-
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
109
</head>
1110
<body>
1211
<app-root></app-root>

0 commit comments

Comments
 (0)