Skip to content

Commit

Permalink
Merge pull request jcoelho93#8 from jcoelho93/feature/fix-profiles-co…
Browse files Browse the repository at this point in the history
…lumns

Fix profiles grid
  • Loading branch information
jcoelho93 authored Mar 15, 2020
2 parents a3b43ef + 4709944 commit e80d789
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/elements/Hero.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ function Hero() {
</div>
<div className="hero-foot" style={{paddingBottom:'20px'}}>
<div className="columns is-mobile">
<div className="column is-4"></div>
<div className="column"></div>
{
Resume.basics.profiles.map((value, index) => {
return (
<div key={index} className="column is-2 has-text-centered">
<div key={index} className="column has-text-centered">
<a href={value.url} target="blank" className="is-hovered" title={value.network}>
<span className="icon is-medium is-">
<i className={value.x_icon}></i>
Expand All @@ -31,7 +31,7 @@ function Hero() {
);
})
}
<div className="column is-4"></div>
<div className="column"></div>
</div>
</div>
</section>
Expand Down

0 comments on commit e80d789

Please sign in to comment.