feat: change styling for loader component
This commit is contained in:
@@ -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`
|
||||||
|
|||||||
Reference in New Issue
Block a user