Skip to content

Commit 01f8395

Browse files
committed
Merge pull request #267 from parallaxinc/fix-new-temp-file
Fix new temp file
2 parents 642a181 + 67955ae commit 01f8395

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"@phated/redux-create-store": "^0.3.0",
1111
"bs2-serial": "^0.12.0",
1212
"codemirror": "^4.13.0",
13-
"frylord": "^0.7.1",
13+
"frylord": "^0.7.4",
1414
"holovisor": "^0.2.0",
1515
"iggins": "^0.4.0",
1616
"irken": "^0.8.0",

src/views/help-overlay.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ const OverlayTitle = require('../components/overlay-title');
88
const OverlayFooter = require('../components/overlay-footer');
99

1010
const helpStyle = {
11-
position: 'relative'
11+
position: 'relative',
12+
marginTop: '25px'
1213
};
1314

1415
const helpLink = 'http://www.parallax.com/go/PBASICHelp';

src/views/new-version-overlay.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ const OverlayTitle = require('../components/overlay-title');
88
const OverlayFooter = require('../components/overlay-footer');
99

1010
const contentStyle = {
11-
position: 'relative'
11+
position: 'relative',
12+
marginTop: '25px'
1213
};
1314

1415
const releaseNotesLink = 'https://github.com/parallaxinc/Parallax-IDE/releases';

0 commit comments

Comments
 (0)