Skip to content

Commit

Permalink
different lists
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafademiray committed Nov 12, 2024
1 parent dcda225 commit 64773e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
13 changes: 6 additions & 7 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,14 +256,13 @@ function Index() {
className="networks"
content="Participate as node operator or interact on LUKSO's networks."
/>
<div style={{ margin: '0 2rem' }}>
<div style={{ margin: '0 1rem' }}>
{networksData.map((item, index) => (
<CustomAccordion
key={index}
summary={item.title}
details={item.link}
index={index}
/>
<ul key={index}>
<li className={styles.guideBox}>
<a href={item.link}>{item.title}</a>
</li>
</ul>
))}
</div>
</div>
Expand Down
1 change: 0 additions & 1 deletion src/pages/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@
text-decoration: none;

&:hover {
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

Expand Down

0 comments on commit 64773e0

Please sign in to comment.