Skip to content

Commit b9669a1

Browse files
authored
Merge branch 'develop' into p5-sound-toggle
2 parents 39a31d0 + 2b875c2 commit b9669a1

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

client/modules/Legal/components/PolicyContainer.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ const PolicyContainerMain = styled.main`
1111
margin: 0 auto;
1212
padding: ${remSize(10)};
1313
line-height: 1.5em;
14+
word-break: break-word;
15+
overflow-wrap: anywhere;
1416
& p {
1517
margin-bottom: ${remSize(10)};
1618
}
1719
font-size: ${remSize(16)};
1820
& h1 {
1921
font-size: 2em;
22+
line-height: 1.2em;
2023
}
2124
& h2 {
2225
font-size: 1.5em;

client/modules/User/components/CookieConsent.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function CookieConsent({ hide }) {
159159
}
160160
}, [cookieConsent]);
161161

162-
if (hide) return null;
162+
if (hide || cookieConsent !== 'none') return null;
163163

164164
return (
165165
<Transition in={inProp} timeout={500}>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "p5.js-web-editor",
3-
"version": "2.16.6",
3+
"version": "2.16.7",
44
"description": "The web editor for p5.js.",
55
"scripts": {
66
"clean": "rimraf dist",

0 commit comments

Comments
 (0)