Skip to content

Commit 3588b26

Browse files
author
Pietro Passarelli - News Labs
committed
refactor
changes from James review #160
1 parent af019bd commit 3588b26

File tree

4 files changed

+1
-40
lines changed

4 files changed

+1
-40
lines changed

demo/app.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from 'react';
2-
// https://github.com/maicki/why-did-you-update
32
// NOTE: This slows down performance, even during development
43
// if (process.env.NODE_ENV !== 'production') {
54
// const { whyDidYouUpdate } = require('why-did-you-update');

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@
103103
"style-loader": "^0.23.1",
104104
"stylelint-config-standard": "^18.2.0",
105105
"webpack": "^4.29.6",
106-
"webpack-cli": "^3.3.0",
107106
"why-did-you-update": "^1.0.6"
108107
},
109108
"contributors": [

packages/components/media-player/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33
import { hotkeys } from 'react-keyboard-shortcuts';
4-
import PlayerControls from './src/PlayerControls/index.js';
4+
import PlayerControls from './src/PlayerControls';
55
import ProgressBar from './src/ProgressBar';
66

77
import returnHotKeys from './src/defaultHotKeys';

packages/components/transcript-editor/index.module.css

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
@value color-subt-green, color-darkest-grey, color-labs-red from '../../config/style-guide/colours.module.css';
22

3-
/* ::selection {
4-
background: color-subt-green;
5-
}
6-
7-
::moz-selection {
8-
background: color-subt-green;
9-
} */
10-
113
.container {
124
position: relative;
135
}
@@ -55,17 +47,6 @@
5547
background-color: #f9f9f9;
5648
position: relative;
5749
}
58-
59-
/* .header {
60-
background-color: black;
61-
width: 100%;
62-
display: block;
63-
} */
64-
65-
/* .nav {
66-
width: 100%;
67-
} */
68-
6950
.grid {
7051
margin-top: 1em;
7152
margin-left: 1em;
@@ -115,24 +96,6 @@
11596

11697
/* Mobile devices - excluding ipad*/
11798
@media (max-width: 767px) {
118-
/* .container {
119-
display: flex;
120-
flex-direction: column;
121-
justify-content: space-evenly;
122-
flex-wrap: nowrap;
123-
background-color: #f9f9f9;
124-
position: relative;
125-
} */
126-
127-
/* .header {
128-
background-color: black;
129-
width: 100%;
130-
} */
131-
132-
/* .nav {
133-
width: 100%;
134-
} */
135-
13699
.main {
137100
width: 100%;
138101
margin: 0 auto;

0 commit comments

Comments
 (0)