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:
@ -51,6 +51,14 @@ const StyledReleaseContainer = styled.div`
|
|||||||
margin: ${({ theme }) => theme.spacing(6)} 0px 0px;
|
margin: ${({ theme }) => theme.spacing(6)} 0px 0px;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
color: ${({ theme }) => theme.font.color.secondary};
|
||||||
|
}
|
||||||
|
|
||||||
|
li strong {
|
||||||
|
color: ${({ theme }) => theme.font.color.primary};
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledReleaseHeader = styled.h2`
|
const StyledReleaseHeader = styled.h2`
|
||||||
|
|||||||
Reference in New Issue
Block a user