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
This commit is contained in:
Nabhag Motivaras 2024-08-05 18:12:20 +05:30 committed by GitHub
parent 542419bc1b
commit b841187319
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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`