mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
fixed node related item hoverable border radius
This commit is contained in:
parent
0dd006d397
commit
1d7c09aa7b
2 changed files with 5 additions and 1 deletions
|
@ -20,7 +20,7 @@ const NodeRelated: FC<IProps> = ({ title, items }) => {
|
|||
|
||||
<div className={styles.grid}>
|
||||
{items.map((item) => (
|
||||
<Hoverable key={item.id}>
|
||||
<Hoverable key={item.id} className={styles.item}>
|
||||
<NodeRelatedItem item={item} />
|
||||
</Hoverable>
|
||||
))}
|
||||
|
|
|
@ -42,3 +42,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.item {
|
||||
border-radius: $radius;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue