fix missing styles
This commit is contained in:
committed by
Mrugesh Mohapatra
parent
4fca16ced1
commit
8830eed458
@ -30,10 +30,7 @@ import {
|
|||||||
import Spacer from '../../../components/util/Spacer';
|
import Spacer from '../../../components/util/Spacer';
|
||||||
import { createGuideUrl } from '../utils';
|
import { createGuideUrl } from '../utils';
|
||||||
|
|
||||||
import '../components/tool-panel.css';
|
import '../components/test-frame.css';
|
||||||
import '../components/preview.css';
|
|
||||||
import '../components/test-suite.css';
|
|
||||||
import '../classic/classic.css';
|
|
||||||
|
|
||||||
// provided by redux form
|
// provided by redux form
|
||||||
const reduxFormPropTypes = {
|
const reduxFormPropTypes = {
|
||||||
|
@ -33,6 +33,7 @@ import {
|
|||||||
} from '../redux';
|
} from '../redux';
|
||||||
|
|
||||||
import './classic.css';
|
import './classic.css';
|
||||||
|
import '../components/test-frame.css';
|
||||||
|
|
||||||
import decodeHTMLEntities from '../../../../utils/decodeHTMLEntities';
|
import decodeHTMLEntities from '../../../../utils/decodeHTMLEntities';
|
||||||
|
|
||||||
|
@ -1,10 +1,3 @@
|
|||||||
.hide-test-frame {
|
|
||||||
position: absolute;
|
|
||||||
top: -9999px;
|
|
||||||
left: -9999px;
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.challenge-preview, .challenge-preview-frame {
|
.challenge-preview, .challenge-preview-frame {
|
||||||
height: calc(100vh - 38px);
|
height: calc(100vh - 38px);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
.hide-test-frame {
|
||||||
|
position: absolute;
|
||||||
|
top: -9999px;
|
||||||
|
left: -9999px;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
@ -1,8 +1,3 @@
|
|||||||
.tool-panel-group button, .tool-panel-group a {
|
.tool-panel-group button, .tool-panel-group a {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-tool-panel {
|
|
||||||
width: 100%;
|
|
||||||
padding: 0 15px;
|
|
||||||
}
|
|
||||||
|
@ -6,6 +6,8 @@ import { Button } from 'react-bootstrap';
|
|||||||
|
|
||||||
import { openModal } from '../redux';
|
import { openModal } from '../redux';
|
||||||
|
|
||||||
|
import './tool-panel.css';
|
||||||
|
|
||||||
const mapStateToProps = () => ({});
|
const mapStateToProps = () => ({});
|
||||||
|
|
||||||
const mapDispatchToProps = dispatch =>
|
const mapDispatchToProps = dispatch =>
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
.project-tool-panel {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 15px;
|
||||||
|
}
|
Reference in New Issue
Block a user