Skip to content

Commit f7b34a8

Browse files
committed
fix hint styles, file path to tutorials-list
1 parent e9eeff9 commit f7b34a8

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

lib/components/Page/Hints/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var HintButton_1 = require('./HintButton');
66
var help_1 = require('material-ui/svg-icons/action/help');
77
var styles = {
88
position: 'relative',
9-
margin: '-5px 20px',
9+
margin: '0 20px -8px 20px',
1010
width: '360px',
1111
textAlign: 'center',
1212
zIndex: '0',

lib/components/Page/ProgressBar/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
var React = require('react');
33
var LinearProgress_1 = require('material-ui/LinearProgress');
44
var style = {
5-
height: '10px'
5+
height: '10px',
6+
zIndex: '10',
67
};
78
var ProgressBar = function (_a) {
89
var taskPosition = _a.taskPosition, taskLength = _a.taskLength, completed = _a.completed;

lib/reducers/checks/verify.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use strict";
22
var check_system_1 = require('./check-system');
33
var store_1 = require('../../store');
4-
var check_1 = require('../tutorials/check');
4+
var check_1 = require('../tutorial-list/check');
55
var result = function (x) { return x; };
66
function allTrue(obj) {
77
return Object.values(obj).every(function (x) { return x === true; });

src/components/Page/Hints/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Help from 'material-ui/svg-icons/action/help';
66

77
const styles = {
88
position: 'relative',
9-
margin: '-5px 20px',
9+
margin: '0 20px -8px 20px',
1010
width: '360px',
1111
textAlign: 'center',
1212
zIndex: '0',

src/components/Page/ProgressBar/index.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import * as React from 'react';
22
import LinearProgress from 'material-ui/LinearProgress';
33

44
const style = {
5-
height: '10px'
5+
height: '10px',
6+
zIndex: '10',
67
};
78

89
const ProgressBar: React.StatelessComponent<{

src/reducers/checks/verify.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {npmMinVersion, nodeMinVersion} from './check-system';
22
import store from '../../store';
3-
import {searchForTutorials} from '../tutorials/check';
3+
import {searchForTutorials} from '../tutorial-list/check';
44

55
const result = x => x;
66
function allTrue(obj: Object): boolean {

0 commit comments

Comments
 (0)