Skip to content

Commit 0b42d5d

Browse files
committed
initial setup
1 parent 3a0e40e commit 0b42d5d

17 files changed

+1054
-489
lines changed

angular.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"src/assets"
2626
],
2727
"styles": [
28+
"@angular/material/prebuilt-themes/deeppurple-amber.css",
2829
"src/styles.css"
2930
],
3031
"scripts": []
@@ -87,12 +88,16 @@
8788
"src/assets"
8889
],
8990
"styles": [
91+
"@angular/material/prebuilt-themes/deeppurple-amber.css",
9092
"src/styles.css"
9193
],
9294
"scripts": []
9395
}
9496
}
9597
}
9698
}
99+
},
100+
"cli": {
101+
"analytics": "daac3eed-04cb-467f-8d64-9bbb4256399f"
97102
}
98103
}

package-lock.json

Lines changed: 852 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@
1111
"private": true,
1212
"dependencies": {
1313
"@angular/animations": "^16.0.0",
14+
"@angular/cdk": "^16.2.0",
1415
"@angular/common": "^16.0.0",
1516
"@angular/compiler": "^16.0.0",
1617
"@angular/core": "^16.0.0",
1718
"@angular/forms": "^16.0.0",
19+
"@angular/material": "^16.2.0",
1820
"@angular/platform-browser": "^16.0.0",
1921
"@angular/platform-browser-dynamic": "^16.0.0",
2022
"@angular/router": "^16.0.0",
@@ -35,4 +37,4 @@
3537
"karma-jasmine-html-reporter": "~2.0.0",
3638
"typescript": "~5.0.2"
3739
}
38-
}
40+
}

src/app/app.component.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
app-board{
2+
display: flex;
3+
justify-content: center;
4+
align-items: center;
5+
flex-direction: column;
6+
}

0 commit comments

Comments
 (0)