From 1d7c09aa7b395b51b9d3ad6c06b061aeebc61d15 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Tue, 20 Dec 2022 15:35:39 +0600 Subject: [PATCH] fixed node related item hoverable border radius --- src/components/node/NodeRelated/index.tsx | 2 +- src/components/node/NodeRelated/styles.module.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/node/NodeRelated/index.tsx b/src/components/node/NodeRelated/index.tsx index 6cce0818..ea300ff6 100644 --- a/src/components/node/NodeRelated/index.tsx +++ b/src/components/node/NodeRelated/index.tsx @@ -20,7 +20,7 @@ const NodeRelated: FC = ({ title, items }) => {
{items.map((item) => ( - + ))} diff --git a/src/components/node/NodeRelated/styles.module.scss b/src/components/node/NodeRelated/styles.module.scss index ee44bbea..3bcd2b74 100644 --- a/src/components/node/NodeRelated/styles.module.scss +++ b/src/components/node/NodeRelated/styles.module.scss @@ -42,3 +42,7 @@ } } } + +.item { + border-radius: $radius; +}