refactor: move style in Cell component

This commit is contained in:
Sammy Teillet
2023-04-20 10:50:34 +02:00
parent f2dcffd8f0
commit 8555df6f3f
2 changed files with 5 additions and 5 deletions

View File

@ -31,6 +31,11 @@ const StyledClickable = styled.div`
:hover::before { :hover::before {
display: block; display: block;
} }
a {
color: inherit;
text-decoration: none;
}
`; `;
const Container = styled.span` const Container = styled.span`

View File

@ -8,11 +8,6 @@ import { defaultData } from './defaultData';
const StyledPeopleContainer = styled.div` const StyledPeopleContainer = styled.div`
display: flex; display: flex;
width: 100%; width: 100%;
a {
color: inherit;
text-decoration: none;
}
`; `;
function People() { function People() {