feat: change styling for loader component

This commit is contained in:
RohitR311
2025-01-08 22:01:53 +05:30
parent 589c4902a4
commit 95694d3bb7

View File

@@ -27,12 +27,10 @@ interface StyledParagraphProps {
} }
const StyledParagraph = styled.p<StyledParagraphProps>` const StyledParagraph = styled.p<StyledParagraphProps>`
font-size: medium; font-size: large;
font-weight: 700;
font-family: inherit; font-family: inherit;
color: ${({ darkMode }) => (darkMode ? 'white' : 'black')}; color: ${({ darkMode }) => (darkMode ? 'white' : '#333')};
margin-top: 20px; margin-top: 20px;
flex-wrap: wrap;
`; `;
const DotsContainer = styled.div` const DotsContainer = styled.div`