Skip to content

Commit a0462b0

Browse files
committed
..
2 parents 493fe58 + ea109a2 commit a0462b0

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ yarn-error.log*
2626

2727
/graphql_payload
2828

29-
yarn.lock
29+
yarn.lock
30+
package.lock.json

src/App.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ h1,h2,h3,h4,h5 {
1212
$blueheader: #24292E;
1313
$buttonPrimary: #54A3FF;
1414

15+
16+
.navbar-brand {
17+
svg{width: 120px;}
18+
}
1519
.night-mode {
1620
a{
1721
color: #fff !important;

src/Components/Views/Home.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import React, { Fragment } from "react";
22
import Layout from "../Layout";
33
import BasicInformation from './BasicInfo'
4-
import Repository from './Repository'
54
import Pinned from "./Pinned"
65
import DataProvider from "../../Data-provider"
7-
import Language from "./Language";
86
import PieChart from "../Charts/PieChart";
97
import BarChart from "../Charts/BarChart";
108
import Loader from "../Extras/Loader";

src/Components/Views/Pinned.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ const Pinned = (props) => {
3333
</div>
3434
)
3535

36-
let no_repo_msg = <div className="col-12" style={{ height: "150px", width: "auto" }}>
37-
<div className="h-100" style={{
38-
display:"flex",
39-
flexDirection: "row",
40-
textAlign: "center",
41-
alignItems: "center"
42-
}}>
43-
<h6 className="text-center mt-3 w-100">
44-
<span style={{ color: "gray" }}>No pinned repos to analyze :-/ </span>
45-
</h6>
46-
</div>
36+
let no_repo_msg= <div className="col-sm-12">
37+
<div className="" style={{
38+
flexDirection: "row",
39+
textAlign: "center",
40+
alignItems: "center"
41+
}}>
42+
43+
<h6 className="mt-3 w-100 text-left">
44+
<span style={{ color: "gray" }}>No pinned repos to analyze ☹️☹️ </span>
45+
</h6>
46+
</div>
4747
</div>
4848

4949
return (

0 commit comments

Comments
 (0)