Fix person tags parentElement should be UL

This commit is contained in:
David O'Trakoun 2020-01-11 23:58:46 -05:00
parent 93b8ad6856
commit 29b18c51b3
No known key found for this signature in database
GPG key ID: AE46C5C392A0C972

View file

@ -76,7 +76,7 @@ export default function Topics() {
}
// Component Styles
const Tags = styled.div`
const Tags = styled.ul`
list-style-type: none;
margin: 0;
padding: 0;
@ -92,7 +92,7 @@ const Tag = styled.label`
padding: 5px;
color: hsla(0, 100%, 100%, 0.8);
transition: background-color 0.2s;
cursor: ${props => (props.clickable? "pointer" : "default")};
cursor: ${props => (props.clickable ? 'pointer' : 'default')};
display: grid;
grid-template-columns: 1fr auto;
align-items: center;