File tree Expand file tree Collapse file tree 2 files changed +3
-36
lines changed
src/components/WithComponentsBar Expand file tree Collapse file tree 2 files changed +3
-36
lines changed Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
// You can delete this file if you're not using it
8
- const path = require ( 'path' ) ;
9
-
10
- exports . onCreateWebpackConfig = ( {
11
- actions, stage,
12
- } ) => {
13
- const { setWebpackConfig } = actions ;
14
- const PRODUCTION = stage !== 'develop' ;
15
-
16
- const sassLoader = PRODUCTION ?
17
- 'sass-loader' :
18
- `${ require . resolve ( 'sass-loader' ) } ?sourceMap` ;
19
-
20
- const styleLoader = [
21
- 'style-loader' ,
22
- sassLoader ,
23
- ] ;
24
-
25
- setWebpackConfig ( {
26
- module : {
27
- rules : [
28
- {
29
- test : / \. s ( a | c ) s s $ / ,
30
- include : path . resolve ( __dirname , './doc' ) ,
31
- use : styleLoader ,
32
- } ,
33
- {
34
- test : / \. m o d u l e \. s ( a | c ) s s $ / ,
35
- include : path . resolve ( __dirname , './doc' ) ,
36
- use : styleLoader ,
37
- } ,
38
- ] ,
39
- } ,
40
- } ) ;
41
- } ;
Original file line number Diff line number Diff line change 1
1
:local(.drawer ) {
2
- padding : 0 ;
3
- height : calc (100% - 100px );
2
+ padding-left : 0 !important ;
3
+ padding-right : 0 !important ;
4
+ height : calc (100% - 100px ) !important ;
4
5
@media only screen and (min-width : 992px ) {
5
6
left : 0 !important ;
6
7
}
You can’t perform that action at this time.
0 commit comments