From 0980d8d785e8f3e300c3c4301f13d1ae3038521f Mon Sep 17 00:00:00 2001 From: Piotr Gawron <p.gawron@atcomp.pl> Date: Thu, 30 Jan 2025 08:44:33 +0100 Subject: [PATCH] styling of notes contains original styling for links --- CHANGELOG | 2 ++ .../Map/Drawer/BioEntityDrawer/BioEntityDrawer.component.tsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 902cddca..d908b061 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,8 @@ minerva-front (18.0.8) stable; urgency=medium (#342) * Bug fix: data overlay removal did not work (#333) * Bug fix: submap download did not download selected map (#337) + * Bug fix: styling of notes contains original styling for links (#344) + -- Piotr Gawron <piotr.gawron@uni.lu> Fri, 13 Dec 2024 13:00:00 +0200 diff --git a/src/components/Map/Drawer/BioEntityDrawer/BioEntityDrawer.component.tsx b/src/components/Map/Drawer/BioEntityDrawer/BioEntityDrawer.component.tsx index b6e7721a..dc452198 100644 --- a/src/components/Map/Drawer/BioEntityDrawer/BioEntityDrawer.component.tsx +++ b/src/components/Map/Drawer/BioEntityDrawer/BioEntityDrawer.component.tsx @@ -72,7 +72,7 @@ export const BioEntityDrawer = (): React.ReactNode => { </div> )} {bioEntityData.notes && ( - <span> + <span className="visited:text-purple-600 text-blue-600 underline hover:text-blue-800"> <hr className="border-b border-b-divide" /> <div className="mt-2 text-sm font-normal" -- GitLab