diff --git a/src/common/data/copy.json b/src/common/data/copy.json
index d811f9f..7ee89dd 100644
--- a/src/common/data/copy.json
+++ b/src/common/data/copy.json
@@ -98,7 +98,7 @@
"Zoom in either with a mouse-scroll or by clicking a ‘cluster’ dot.",
"Use **filters** and **categories** to segment the data. Selecting certain filters and categories will show only the datapoints that relate to them. If no filters or categories are selected, all the datapoints are displayed.",
"Selecting more than one filter will introduce colour-coded datapoints, which allow you to compare types of incident across time and space. This feature works up to a maximum of six filters.",
- "Use the left and right arrows to move back and forward through time. Use the handles on the right to select a date range."
+ "Use the left and right arrows to move back and forward through time. You can also click and drag anywhere on the timeline. Use the handles on the right to select a date range."
],
"notation": "Combinations of colours within a circle indicate multiple events in a single location.",
"arrows": "Use the left/right arrows on the keboard to move back and forth between events in time."
diff --git a/src/common/utilities.js b/src/common/utilities.js
index 1b94098..ba931ad 100644
--- a/src/common/utilities.js
+++ b/src/common/utilities.js
@@ -406,5 +406,5 @@ export function makeNiceDate (datetime) {
{ value: year }
] = dateTimeFormat.formatToParts(datetime)
- return `${day} ${month}, ${year}`
+ return `${day} ${month} ${year}`
}
diff --git a/src/components/Layout.js b/src/components/Layout.js
index d9c806a..29c92e4 100644
--- a/src/components/Layout.js
+++ b/src/components/Layout.js
@@ -260,11 +260,13 @@ class Dashboard extends React.Component {
)
}
+ const dateHeight = 80
const popupStyles = {
- fontSize: 18,
- height: `calc(100vh - ${app.timeline.dimensions.height}px)`,
- width: '40vw',
- bottom: app.timeline.dimensions.height
+ height: `calc(100vh - ${app.timeline.dimensions.height}px - ${dateHeight}px)`,
+ width: '60vw',
+ maxWidth: 600,
+ bottom: app.timeline.dimensions.height + dateHeight,
+ overflowY: 'scroll'
}
return (
@@ -325,7 +327,7 @@ class Dashboard extends React.Component {
onClose={actions.toggleInfoPopup}
/>