Skip to content

Commit b1a78a5

Browse files
committed
add broken css calc stuff
1 parent 6ebe3a9 commit b1a78a5

File tree

5 files changed

+106
-5
lines changed

5 files changed

+106
-5
lines changed

angular.json

+7-3
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@
119119
}
120120
}
121121
}
122-
}},
123-
"defaultProject": "calc-bug"
124-
}
122+
}
123+
},
124+
"defaultProject": "calc-bug",
125+
"cli": {
126+
"analytics": false
127+
}
128+
}

package-lock.json

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

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
"ng": "ng",
66
"start": "ng serve",
77
"build": "ng build",
8+
"build:prod": "ng build --prod",
89
"test": "ng test",
910
"lint": "ng lint",
10-
"e2e": "ng e2e"
11+
"e2e": "ng e2e",
12+
"serve:prod": "http-server ./dist/calc-bug -p 8199 -o"
1113
},
1214
"private": true,
1315
"dependencies": {
@@ -27,10 +29,11 @@
2729
"@angular-devkit/build-angular": "~0.901.7",
2830
"@angular/cli": "~9.1.7",
2931
"@angular/compiler-cli": "~9.1.9",
30-
"@types/node": "^12.11.1",
3132
"@types/jasmine": "~3.5.0",
3233
"@types/jasminewd2": "~2.0.3",
34+
"@types/node": "^12.11.1",
3335
"codelyzer": "^5.1.2",
36+
"http-server": "^0.12.3",
3437
"jasmine-core": "~3.5.0",
3538
"jasmine-spec-reporter": "~4.2.1",
3639
"karma": "~5.0.0",

src/app/app.component.html

+2
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,8 @@
342342
<h2>Resources</h2>
343343
<p>Here are some links to help you get started:</p>
344344

345+
<div class="box"></div>
346+
345347
<div class="card-container">
346348
<a class="card" target="_blank" rel="noopener" href="https://angular.io/tutorial">
347349
<svg class="material-icons" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z"/></svg>

src/styles.css

+9
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
/* You can add global styles to this file, and also import other style files */
2+
:root {
3+
--width-a: 10em;
4+
}
5+
6+
.box {
7+
background-color: #ccc;
8+
width: calc(var(--width-a)/2 + var(--width-a)/2);
9+
height: calc(var(--width-a)/2 + var(--width-a)/2);
10+
}

0 commit comments

Comments
 (0)