From b841187319f52886d941e34379b1336be569879a Mon Sep 17 00:00:00 2001 From: Nabhag Motivaras <65061890+Nabhag8848@users.noreply.github.com> Date: Mon, 5 Aug 2024 18:12:20 +0530 Subject: [PATCH] fix: releases list to have styles according to theme (#6534) ### ISSUE (BUG) - Fixes: #6524 ### DESCRIPTION - List styles wasn't applying based on the theme, reason for applying css to directly to **li** and **li strong** instead of applying to unorderlist-element is that later on we might have **orderlist** in that case if we had apply to **ul** here, this will issue will be raised again, thus in **list element** https://github.com/user-attachments/assets/64f0870e-4f82-4afd-8452-778aa54023fc --- packages/twenty-front/src/pages/settings/Releases.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/twenty-front/src/pages/settings/Releases.tsx b/packages/twenty-front/src/pages/settings/Releases.tsx index 5e31d43eb..de3c74f33 100644 --- a/packages/twenty-front/src/pages/settings/Releases.tsx +++ b/packages/twenty-front/src/pages/settings/Releases.tsx @@ -51,6 +51,14 @@ const StyledReleaseContainer = styled.div` margin: ${({ theme }) => theme.spacing(6)} 0px 0px; text-align: justify; } + + li { + color: ${({ theme }) => theme.font.color.secondary}; + } + + li strong { + color: ${({ theme }) => theme.font.color.primary}; + } `; const StyledReleaseHeader = styled.h2`