diff --git a/client/app/pages/stats/stats.tsx b/client/app/pages/stats/stats.tsx index 8c0eaca..7358438 100644 --- a/client/app/pages/stats/stats.tsx +++ b/client/app/pages/stats/stats.tsx @@ -45,10 +45,10 @@ export class Stats extends Component { datasets: [ { label: 'Count', - backgroundColor: 'rgba(114,137,218, 0.4)', + backgroundColor: 'rgba(114,137,218, 0.5)', borderColor: 'rgba(114,137,218, 0.9)', borderWidth: 1, - hoverBackgroundColor: 'rgba(114,137,218, 0.6)', + hoverBackgroundColor: 'rgba(114,137,218, 0.7)', hoverBorderColor: 'rgba(114,137,218, 1)', data: map(this.state.data, v => v.count), }, diff --git a/makefile b/makefile index 4f3ffa4..aad88a3 100644 --- a/makefile +++ b/makefile @@ -2,13 +2,13 @@ run: go run ./main.go install: - go get && cd client && yarn install + go get && cd client && npm install build-server: go build -o bot ./main.go build-client: - cd client && yarn run build + cd client && npm run build clean: rm -rf bot ./dist