Skip to content

Commit

Permalink
Added Card, Customers, and new Costumer Form
Browse files Browse the repository at this point in the history
  • Loading branch information
mariorobles93 committed Mar 16, 2024
1 parent ce389ef commit cb94c08
Show file tree
Hide file tree
Showing 8 changed files with 181 additions and 344 deletions.
12 changes: 10 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
"src/assets"
],
"styles": [
"src/styles.css"
"src/styles.css",
"node_modules/primeng/resources/themes/lara-dark-amber/theme.css",
"node_modules/primeng/resources/primeng.min.css"
],
"scripts": []
},
Expand All @@ -48,7 +50,13 @@
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
"sourceMap": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.development.ts"
}
]
}
},
"defaultConfiguration": "production"
Expand Down
133 changes: 129 additions & 4 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"@supabase/supabase-js": "^2.39.8",
"primeng": "^17.11.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
Expand Down
6 changes: 6 additions & 0 deletions src/app/app.component.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.app-body{
margin-top: 1.5rem;
display: flex;
justify-content: center;
gap: 2rem;
}
Loading

0 comments on commit cb94c08

Please sign in to comment.