mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
Fix person tags parentElement should be UL
This commit is contained in:
parent
93b8ad6856
commit
29b18c51b3
1 changed files with 2 additions and 2 deletions
|
|
@ -76,7 +76,7 @@ export default function Topics() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Component Styles
|
// Component Styles
|
||||||
const Tags = styled.div`
|
const Tags = styled.ul`
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
@ -92,7 +92,7 @@ const Tag = styled.label`
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
color: hsla(0, 100%, 100%, 0.8);
|
color: hsla(0, 100%, 100%, 0.8);
|
||||||
transition: background-color 0.2s;
|
transition: background-color 0.2s;
|
||||||
cursor: ${props => (props.clickable? "pointer" : "default")};
|
cursor: ${props => (props.clickable ? 'pointer' : 'default')};
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr auto;
|
grid-template-columns: 1fr auto;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue