You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2019/11/24 20:04:58 UTC

[incubator-streampipes-website] 04/07: Modify css of index page

This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-website.git

commit adcc3973bf5334b97aefb088f05841d7f28079b2
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Sun Nov 24 14:38:47 2019 +0100

    Modify css of index page
---
 documentation/website/pages/en/index.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/documentation/website/pages/en/index.js b/documentation/website/pages/en/index.js
index 2023160..143a163 100644
--- a/documentation/website/pages/en/index.js
+++ b/documentation/website/pages/en/index.js
@@ -91,11 +91,11 @@ class SpDocsLinks extends React.Component {
         ];
 
         return (
-            <div className="container" style={{"margin-bottom": '50px'}}>
+            <div className="container" style={{"margin": '50px'}}>
                 <div className="wrapper">
                     <div className="gridBlock">
-                        {elements.map((value) => {
-                            return <SpDocsLink settings={value}/>
+                        {elements.map((value, index) => {
+                            return <SpDocsLink key={index} settings={value}/>
                         })}
                     </div>
                 </div>