Skip to content

Commit

Permalink
fix link (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiolalombardim authored Nov 6, 2023
1 parent e78718b commit 35b4a71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/modules/explorer/pages/ProposalDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ import { useDAOLambda } from "services/contracts/baseDAO/hooks/useDAOLambda"
import { parseLambdaCode } from "utils"

const Container = styled(ContentContainer)({
padding: "36px 45px"
"padding": "36px 45px",
"& a": {
color: "#81feb7",
textDecoration: "underline"
}
})

const HistoryItem = styled(Grid)(({ theme }: { theme: Theme }) => ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ export const ProposalDetailCard: React.FC<{ poll: Poll | undefined; daoId: strin
) : null}
</Grid>
</GridContainer>
)
</>
)
}

0 comments on commit 35b4a71

Please sign in to comment.