Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
fix: links width (#208)
Browse files Browse the repository at this point in the history
Co-authored-by: Eddie Jaoude <eddie@jaoudestudios.com>
  • Loading branch information
rohan-kulkarni-25 and eddiejaoude authored Sep 26, 2021
1 parent 3584dff commit 9f11c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Links.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function Links({ links }) {

return (
<section className="p-d-flex p-jc-center p-mb-4">
<div className="p-d-flex p-flex-column" style={{ width: 70 + '%' }}>
<div className="p-d-flex p-flex-column" style={{ width: 70 + '%', maxWidth: 45 + 'rem' }}>
{links
.filter((link) => Object.keys(colors).includes(link.icon))
.map((link, index) => (
Expand Down

0 comments on commit 9f11c54

Please sign in to comment.