We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85dc7ad commit da22dd1Copy full SHA for da22dd1
client/modules/Legal/components/PolicyContainer.jsx
@@ -11,12 +11,15 @@ const PolicyContainerMain = styled.main`
11
margin: 0 auto;
12
padding: ${remSize(10)};
13
line-height: 1.5em;
14
+ word-break: break-word;
15
+ overflow-wrap: anywhere;
16
& p {
17
margin-bottom: ${remSize(10)};
18
}
19
font-size: ${remSize(16)};
20
& h1 {
21
font-size: 2em;
22
+ line-height: 1.2em;
23
24
& h2 {
25
font-size: 1.5em;
client/modules/User/components/CookieConsent.jsx
@@ -159,7 +159,7 @@ function CookieConsent({ hide }) {
159
160
}, [cookieConsent]);
161
162
- if (hide) return null;
+ if (hide || cookieConsent !== 'none') return null;
163
164
return (
165
<Transition in={inProp} timeout={500}>
0 commit comments