Skip to content

Commit 5cf0719

Browse files
author
Pavithra K
committed
Adds svg logo for github
1 parent ff72349 commit 5cf0719

File tree

5 files changed

+44
-6
lines changed

5 files changed

+44
-6
lines changed

assets/github-logo.svg

Lines changed: 38 additions & 0 deletions
Loading

assets/github-mark-32.png

-1.53 KB
Binary file not shown.

components/vote/app-style.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@
7070
background: getColor(elephant)
7171
}
7272
}
73-
73+
7474
img {
75-
vertical-align: middle;
7675
height: 25px;
76+
vertical-align: middle;
7777
padding-left: 5px;
7878
}
7979
}
@@ -92,7 +92,7 @@
9292
height: 25px;
9393
vertical-align: middle;
9494
margin-right: 10px;
95-
}
95+
}
9696
}
9797

9898
&__self-info {

components/vote/app.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as api from "./api";
55
import VoteButton from './button/button';
66
import VoteItem from './button/new-button';
77
import Influence from './influence.jsx';
8-
import GithubMark from '../../assets/github-mark-32.png';
8+
import GithubMark from '../../assets/github-logo.svg';
99

1010
function updateByProperty(array, property, propertyValue, update) {
1111
return array.map(item => {

components/vote/button/new-button.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ export default class NewButton extends Component {
3939
const {color, className, value, myValue} = this.props;
4040
return voteAppToken ? (<div className="vote-new-button" style={{color: color}}>
4141
<div className="vote-new-button__arrows">
42-
{this.makeTriangle(1, triangleUp, 6, 1)}
43-
{this.makeTriangle(-1, triangleDown, 6, 1)}
42+
{this.makeTriangle(1, triangleUp, 10, 1)}
43+
{this.makeTriangle(-1, triangleDown, 10, 1)}
4444
</div>
4545
<div className="vote-new-button__value" title={value + " was voted in total by all users."}>
4646
<span className={className}>{value}</span>

0 commit comments

Comments
 (0)