From 08bc5c6d8913513ed8e4a2038968fa8f05969e90 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 20 Sep 2021 00:18:52 -0300 Subject: fix some feedback from belen --- .../src/components/styled/index.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'packages/taler-wallet-webextension/src/components/styled') diff --git a/packages/taler-wallet-webextension/src/components/styled/index.tsx b/packages/taler-wallet-webextension/src/components/styled/index.tsx index a46f38ee9..23b0b1b57 100644 --- a/packages/taler-wallet-webextension/src/components/styled/index.tsx +++ b/packages/taler-wallet-webextension/src/components/styled/index.tsx @@ -339,6 +339,9 @@ export const ButtonBoxSuccess = styled(ButtonBox)` export const ButtonWarning = styled(ButtonVariant)` background-color: rgb(223, 117, 20); ` +export const LinkWarning = styled(Link)` + color: rgb(223, 117, 20); +` export const ButtonBoxWarning = styled(ButtonBox)` color: rgb(223, 117, 20); border-color: rgb(223, 117, 20); @@ -641,14 +644,17 @@ export const TermsOfService = styled.div` } a { + text-decoration: none; + color: inherit; + flex-direction: column; + } + + & > a { border: 1px solid black; border-radius: 5px; padding: 1em; margin-top: 2px; margin-bottom: 2px; - text-decoration: none; - color: inherit; - flex-direction: column; display: flex; &[data-open="true"] { @@ -666,10 +672,10 @@ export const TermsOfService = styled.div` height: auto; } - &[data-open="true"] header:after { + &[data-open="true"] > header:after { content: '\\2227'; } - &[data-open="false"] header:after { + &[data-open="false"] > header:after { content: '\\2228'; } } -- cgit v1.2.3