Fix mobile layout, add contribution kind to props

This commit is contained in:
2017-06-07 12:46:03 +02:00
parent 33072900e9
commit cbb15f4d6f
7 changed files with 28 additions and 14 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ section#add-contributor, section#add-proposal {
padding-top: 1rem;
text-align: center;
a {
color: lightblue;
color: $primaryColor;
margin-left: 1rem;
}
}
+1 -1
View File
@@ -22,7 +22,7 @@ table.contributor-list {
}
a {
color: lightblue;
color: $primaryColor;
&:hover, &:active {
color: #fff;
}
+2 -2
View File
@@ -11,7 +11,7 @@
margin-top: 12rem;
text-align: center;
font-size: 1.4rem;
color: lightblue;
color: $primaryColor;
@include media($mobile) {
margin-top: 6rem;
@@ -23,7 +23,7 @@
margin-bottom: 2rem;
#path-comet {
fill: lightblue;
fill: $primaryColor;
opacity: 0.1;
animation-name: pulse;
+8 -3
View File
@@ -14,9 +14,14 @@ ul.proposal-list {
border-top: 1px solid rgba(255,255,255,0.2);
}
.id {
color: lightblue;
.category {
color: $blue;
padding-right: 0.2rem;
&.community { color: $red; }
&.dev { color: $pink; }
&.design { color: $yellow; }
&.docs { color: $green; }
&.ops { color: $purple; }
}
.amount {
font-weight: 500;
@@ -31,7 +36,7 @@ ul.proposal-list {
}
.votes {
font-size: 1rem;
color: lightblue;
color: $primaryColor;
padding-left: 0.5rem;
}