We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78718b commit 35b4a71Copy full SHA for 35b4a71
src/modules/explorer/pages/ProposalDetails/index.tsx
@@ -38,7 +38,11 @@ import { useDAOLambda } from "services/contracts/baseDAO/hooks/useDAOLambda"
38
import { parseLambdaCode } from "utils"
39
40
const Container = styled(ContentContainer)({
41
- padding: "36px 45px"
+ "padding": "36px 45px",
42
+ "& a": {
43
+ color: "#81feb7",
44
+ textDecoration: "underline"
45
+ }
46
})
47
48
const HistoryItem = styled(Grid)(({ theme }: { theme: Theme }) => ({
src/modules/lite/explorer/components/ProposalDetailCard.tsx
@@ -209,7 +209,6 @@ export const ProposalDetailCard: React.FC<{ poll: Poll | undefined; daoId: strin
209
) : null}
210
</Grid>
211
</GridContainer>
212
- )
213
</>
214
)
215
}
0 commit comments