Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ before_install:
- sudo apt-get install -y libappindicator1 fonts-liberation
- wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- sudo dpkg -i google-chrome*.deb

after_success:
- npm run coveralls
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AngularFrontend
Master-Branch: [![Build Status](https://travis-ci.org/BPChain/angular-frontend.svg?branch=master)](https://travis-ci.org/BPChain/angular-frontend)
Dev-Branch: [![Build Status](https://travis-ci.org/BPChain/angular-frontend.svg?branch=dev)](https://travis-ci.org/BPChain/angular-frontend)
Master-Branch: [![Build Status](https://travis-ci.org/BPChain/angular-frontend.svg?branch=master)](https://travis-ci.org/BPChain/angular-frontend) [![Coverage Status](https://coveralls.io/repos/github/BPChain/angular-frontend/badge.svg?branch=master)](https://coveralls.io/github/BPChain/angular-frontend?branch=master)</br>
Dev-Branch: [![Build Status](https://travis-ci.org/BPChain/angular-frontend.svg?branch=dev)](https://travis-ci.org/BPChain/angular-frontend) [![Coverage Status](https://coveralls.io/repos/github/BPChain/angular-frontend/badge.svg?branch=dev)](https://coveralls.io/github/BPChain/angular-frontend?branch=dev)</br>

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.5.4.

Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"test": "ng test --code-cover",
"lint": "ng lint",
"e2e": "ng e2e"
"e2e": "ng e2e",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"private": true,
"dependencies": {
Expand Down Expand Up @@ -38,6 +39,7 @@
"@types/jasminewd2": "~2.0.2",
"@types/node": "^6.0.96",
"codelyzer": "^4.0.1",
"coveralls": "^3.0.0",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
Expand Down
4 changes: 2 additions & 2 deletions src/app/dashboard/form/form.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ mat-card {
background: whitesmoke;
}

.main-div{
.main-div {
display: flex;
justify-content: center;
align-items: center;
}

mat-card mat-card-actions button{
mat-card mat-card-actions button {
float: right;
}