File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ module.exports = {
23
23
new HtmlWebpackPlugin ( { inject : true , template : '../../templates/server.ejs' } ) ,
24
24
new webpack . HotModuleReplacementPlugin ( ) ,
25
25
new webpack . NoEmitOnErrorsPlugin ( ) ,
26
- new StylablePlugin ( { injectBundleCss : true } )
26
+ new StylablePlugin ( { injectBundleCss : true , nsDelimiter : '_' } )
27
27
] ,
28
28
module : {
29
29
rules : [
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ export class Button extends Component {
33
33
transition : 'background-color 300ms' ,
34
34
transform : 'translateZ(0)' ,
35
35
backfaceVisibility : 'visible' ,
36
- backgroundColor : ` ${ depressed ? bgDepressed : bgColor } ` ,
36
+ backgroundColor : depressed ? bgDepressed : bgColor ,
37
37
':hover' : {
38
- backgroundColor : ` ${ depressed ? bgDepressed : bgHover } `
38
+ backgroundColor : depressed ? bgDepressed : bgHover
39
39
}
40
40
} )
41
41
You can’t perform that action at this time.
0 commit comments