Skip to content

Commit

Permalink
Merge pull request #27 from CS3219-AY2425S1/init-primeng
Browse files Browse the repository at this point in the history
Add PrimeNG
  • Loading branch information
McNaBry authored Sep 18, 2024
2 parents 1209688 + a2e130c commit 789b9d7
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 332 deletions.
17 changes: 17 additions & 0 deletions frontend/package-lock.json

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

4 changes: 3 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint"
"lint": "ng lint",
"lint:fix": "ng lint --fix"
},
"private": true,
"dependencies": {
Expand All @@ -19,6 +20,7 @@
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"primeng": "^17.18.10",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
Expand Down
17 changes: 17 additions & 0 deletions frontend/src/app/app.component.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
main {
width: 100%;
min-height: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 1rem;
box-sizing: inherit;
position: relative;
}

.content {
display: flex;
flex-direction: column;
width: 100%;
margin-bottom: 3rem;
}
Loading

0 comments on commit 789b9d7

Please sign in to comment.