We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82c8599 commit 6c8e8d0Copy full SHA for 6c8e8d0
src/components/Api/GitApi.css
@@ -0,0 +1,10 @@
1
+.b-chart
2
+{
3
+ display: flex;
4
+ justify-content:center;
5
+}
6
+
7
+.title
8
9
+ justify-content: flex-start;
10
src/components/Api/GitApi.js
@@ -1,5 +1,6 @@
import React, { useEffect, useState } from "react";
import Bubblechart from "../Resources/Bubblechart";
+import "./GitApi.css";
const GitApi = () => {
@@ -25,10 +26,9 @@ const GitApi = () => {
25
26
27
return (
28
- <div>
29
-
30
- <Bubblechart data = {contributor}></Bubblechart>
31
+ <div className = "b-chart">
+ <h1 className="b-title">Contributors</h1>
+ <Bubblechart data = {contributor}></Bubblechart>
32
</div>
33
);
34
};
0 commit comments