Skip to content
Snippets Groups Projects
Commit b128333f authored by Henrique Varella Ehrenfried's avatar Henrique Varella Ehrenfried :speech_balloon:
Browse files

Center content in carousel at homepage

parent 8acb7f06
No related branches found
No related tags found
5 merge requests!57Merge of develop into master,!56Fixed buttons reportar, seguir, compartilhar, guardar and entrar (in comments...,!39Update admin system,!32Homologa,!31Fix console error
......@@ -73,7 +73,7 @@ class ReqResources extends Component {
<Carousel showThumbs={false} infiniteLoop={true} showStatus={false}>
{
rows.map((row, index) => (
<Row style={{ paddingBottom: "5px", margin:'0 auto', width:"80%"}} key={(index+1)}>
<Row style={{ paddingBottom: "5px", margin:'0 auto', width:"80%", justifyContent: "center"}} key={(index+1)}>
{row.map((card) => (
<div style={{marginLeft:10, display: 'flex' }} key={card.id*(index+1)}>
<ResourceCardFunction
......@@ -141,7 +141,7 @@ class ReqCollections extends Component {
<Carousel showThumbs={false} infiniteLoop={true} showStatus={false}>
{
rows.map((row, index) => (
<Row style={{ paddingBottom: "5px", margin:'0 auto', width:"80%" }} key={(index+1)}>
<Row style={{ paddingBottom: "5px", margin:'0 auto', width:"80%", justifyContent: "center" }} key={(index+1)}>
{row.map((card) => (
<div style={{marginLeft:10, display: 'flex' }} key={card.id*(index+1)}>
<CollectionCardFunction
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment