Skip to content

Commit

Permalink
Mobile - adjust active tag on project listing page #425
Browse files Browse the repository at this point in the history
  • Loading branch information
brodavi committed Nov 30, 2021
1 parent f88b101 commit 7769301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/projects/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const BrowseList = ({projects}) => {
<p style={{ display: 'flex', justifyContent: 'space-between', width:"100%" }}>
<a href={"/projects/" + project.path}>{project.name}</a>
{
project.active && <Button bg="#FAD546" marginX="10px" borderRadius="8px" padding="0.7rem" fontSize="0.7rem" color="#000" textTransform="uppercase" h="18px" border="none">
project.active && <Button bg="#FAD546" marginX="10px" borderRadius="8px" padding="0.7rem" fontSize="10px" color="#000" textTransform="uppercase" h="18px" border="none">
{ project.active ? "ACTIVE" : "" }
</Button>
}
Expand Down

0 comments on commit 7769301

Please sign in to comment.