File tree Expand file tree Collapse file tree 6 files changed +24
-27
lines changed
Expand file tree Collapse file tree 6 files changed +24
-27
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- @import url (' ~codemirror/lib/codemirror.css' );
2- @import url (' ~codemirror/addon/fold/foldgutter.css' );
3- @import url (' ./highlight.css' );
4- @import url (' ~font-awesome/css/font-awesome.css' );
5- @import url (' ../fontcustom/fontcustom.css' );
1+ @import url(~ codemirror / lib/codemirror.css);
2+ @import url(~ codemirror / addon/fold/foldgutter.css);
3+ @import url(./ highlight.css);
4+ @import url(~ font- awesome/ css/font-awesome.css);
5+ @import url(../ fontcustom/fontcustom.css);
66
77html {
88 font-size : 14px ;
99 box-sizing : border-box;
10- font-family : Verdana, non-serif;
10+ font-family : ' Verdana' , ' non-serif' ;
1111}
1212
1313.cover {
@@ -201,7 +201,7 @@ html {
201201}
202202
203203.errorMessage {
204- font-family : Verdana, non-serif;
204+ font-family : ' Verdana' , ' non-serif' ;
205205 font-size : 1.2em ;
206206}
207207
Original file line number Diff line number Diff line change 44
55@font-face {
66 font-family : 'fontcustom' ;
7- src : url (' ./fontcustom_16162f150d3b19ba44cc2e51f284fbcd.eot' );
7+ src : url (./ fontcusto m_16162f150d3b19ba44cc2e51f284fbcd.eot);
88 src :
9- url (' ./fontcustom_16162f150d3b19ba44cc2e51f284fbcd.eot?#iefix' ) format ('embedded-opentype' ),
10- url (' ./fontcustom_16162f150d3b19ba44cc2e51f284fbcd.woff2' ) format ('woff2' ),
11- url (' ./fontcustom_16162f150d3b19ba44cc2e51f284fbcd.woff' ) format ('woff' ),
12- url (' ./fontcustom_16162f150d3b19ba44cc2e51f284fbcd.ttf' ) format ('truetype' ),
13- url (' ./fontcustom_16162f150d3b19ba44cc2e51f284fbcd.svg#fontcustom' ) format ('svg' );
9+ url (./ fontcusto m_16162f150d3b19ba44cc2e51f284fbcd.eot?# iefix) format ('embedded-opentype' ),
10+ url (./ fontcusto m_16162f150d3b19ba44cc2e51f284fbcd.woff2) format ('woff2' ),
11+ url (./ fontcusto m_16162f150d3b19ba44cc2e51f284fbcd.woff) format ('woff' ),
12+ url (./ fontcusto m_16162f150d3b19ba44cc2e51f284fbcd.ttf) format ('truetype' ),
13+ url (./ fontcusto m_16162f150d3b19ba44cc2e51f284fbcd.svg# fontcusto m) format ('svg' );
1414 font-weight : normal;
1515 font-style : normal;
1616}
1717
1818@media screen and (min-device-pixel-ratio : 0 ) {
1919 @font-face {
2020 font-family : 'fontcustom' ;
21- src : url (' ./fontcustom_16162f150d3b19ba44cc2e51f284fbcd.svg#fontcustom' ) format ('svg' );
21+ src : url(./ fontcusto m_16162f150d3b19ba44cc2e51f284fbcd.svg # fontcustom ) for mat('svg' );
2222 }
2323}
2424
Original file line number Diff line number Diff line change @@ -62,9 +62,8 @@ export default class TransformOutput extends React.Component {
6262
6363 UNSAFE_componentWillReceiveProps ( nextProps ) {
6464 if ( this . props . transformCode !== nextProps . transformCode || this . props . code !== nextProps . code || this . props . transformer !== nextProps . transformer ) {
65- if ( console . clear ) {
65+ if ( console . clear )
6666 console . clear ( ) ;
67- }
6867
6968 transform (
7069 nextProps . transformer ,
Original file line number Diff line number Diff line change @@ -130,9 +130,8 @@ function* watchSnippetURI(storageAdapter) {
130130 actions . doneLoadingSnippet ( ) ,
131131 ] ) ) ;
132132
133- if ( global . history ) {
133+ if ( global . history )
134134 goBackTask = yield fork ( goBack ) ;
135- }
136135
137136 return ;
138137 }
Original file line number Diff line number Diff line change 1+ export default {
2+ rules : {
3+ 'property-no-unknown' : false ,
4+ 'media-feature-name-no-unknown' : false ,
5+ 'selector-id-pattern' : false ,
6+ 'declaration-block-single-line-max-declarations' : false ,
7+ } ,
8+ } ;
You can’t perform that action at this time.
0 commit comments