feat: Preferences (Theme and Support)

This commit is contained in:
Anoop M D
2023-08-18 00:18:30 +05:30
parent bf5ee7e409
commit 417b50b0ad
11 changed files with 216 additions and 170 deletions

View File

@@ -0,0 +1,20 @@
import styled from 'styled-components';
const StyledWrapper = styled.div`
color: ${(props) => props.theme.text};
.rows {
svg {
position: relative;
top: -1px;
}
.label {
cursor: pointer;
&:hover {
text-decoration: underline;
}
}
}
`;
export default StyledWrapper;