mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
Merge pull request #337 from davidosomething/fix-tags-ul
Fix person tags parentElement should be UL
This commit is contained in:
commit
e2123c4d6d
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue