Browse Source

:new: add contributor

Kazuya_Nagase 7 years ago
parent
commit
b0c8e8a094

+ 29 - 4
src/client/js/components/StaffCredit/Contributor.js

@@ -1,18 +1,43 @@
 const contributors = [
 const contributors = [
   {
   {
     sectionName: 'GROWI VILLAGE',
     sectionName: 'GROWI VILLAGE',
-    additionalClass: 'col-md-12',
+    additionalClass: 'col-md-12 my-5',
     members: [
     members: [
-      { position: 'Soncho 1st', name: 'Sou Mizobuchi' },
-      { position: 'Soncho 2nd', name: 'Yusuke Takizawa' },
+      { position: 'Soncho 1st', name: 'mizozobu' },
+      { position: 'Soncho 2nd', name: 'yusuketk' },
+      { name: 'ryu-sato' },
+      { name: 'TatsuyaIse' },
+      { name: 'haruhikonyan' },
+      { name: 'kaishuu0123' },
+      { name: 'kouki-o' },
+      { name: 'utsushiiro' },
+      { name: 'Yuchan4342' },
+      { name: 'mayumorita' },
+      { name: 'itizawa' },
+      { name: 'TsuyoshiSuzukief' },
+      { name: 'SeiyaTashiro' },
+      { name: 'Angola' },
+    ],
+  },
+  {
+    sectionName: 'ISSUE CONTRIBUTER',
+    additionalClass: 'col-md-12 my-5',
+    members: [
+      { name: 'yaodingyd' },
     ],
     ],
   },
   },
   {
   {
     sectionName: 'SPECIAL THANKS',
     sectionName: 'SPECIAL THANKS',
-    additionalClass: 'col-md-6 secial-thanks',
+    additionalClass: 'col-md-12 my-5',
     members: [
     members: [
       { name: 'Crowi Team' },
       { name: 'Crowi Team' },
       { position: 'Ambassador', name: 'Tsuyoshi Suzuki' },
       { position: 'Ambassador', name: 'Tsuyoshi Suzuki' },
+      { name: 'suzuki' },
+      { name: 'riaf' },
+      { name: 'hiroppy' },
+      { name: 'b4b4r07' },
+      { name: 'fivestar' },
+      { name: 'yudoufu' },
     ],
     ],
   },
   },
 ];
 ];

+ 2 - 2
src/client/js/components/StaffCredit/StaffCredit.jsx

@@ -51,9 +51,9 @@ export default class StaffCredit extends React.Component {
   }
   }
 
 
   render() {
   render() {
-    if (this.state.isShown) {
+    if (!this.state.isShown) {
       const credit = contributors.map((contributor) => {
       const credit = contributors.map((contributor) => {
-        const section = <p key={contributor.sectionName} className="dev-team mt-5">{contributor.sectionName}</p>;
+        const section = <p key={contributor.sectionName} className="dev-team my-5">{contributor.sectionName}</p>;
         const members = contributor.members.map((member) => {
         const members = contributor.members.map((member) => {
           const name = <p className="dev-name mb-5">{member.name}</p>;
           const name = <p className="dev-name mb-5">{member.name}</p>;
           if (member.position) {
           if (member.position) {

+ 3 - 3
src/client/styles/scss/_staff_credit.scss

@@ -2,7 +2,7 @@
 #staff-credit {
 #staff-credit {
   font-family: 'Press Start 2P', $basefont1;
   font-family: 'Press Start 2P', $basefont1;
   color: white;
   color: white;
-  $credit-length: -50em;
+  $credit-length: -200em;
 
 
   .credit-curtain {
   .credit-curtain {
     position: fixed;
     position: fixed;
@@ -19,7 +19,7 @@
     top: $credit-length;
     top: $credit-length;
     animation-name: Credit;
     animation-name: Credit;
     // credit duration
     // credit duration
-    animation-duration: 15s;
+    animation-duration: 20s;
     animation-timing-function: linear;
     animation-timing-function: linear;
   }
   }
 
 
@@ -46,6 +46,6 @@
   }
   }
 
 
   .dev-name {
   .dev-name {
-    font-size: 2em;
+    font-size: 1.8em;
   }
   }
 }
 }