File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1+
12.side-container {
23 position : fixed ;
34 top : 0 ;
45 left : 0 ;
5- width : 50 % ;
6+ width : 100 % ;
67 z-index : 2000 ;
78 background : white ;
89 box-shadow : 0 0 30px ;
1213 transition : transform ease-in-out .2s ;
1314 padding-top : 0 ;
1415
16+ @media screen and (min-width : 800px ) {
17+ width : 50% ;
18+ }
19+
1520 & .closed {
1621 transform : translateX (calc (-100% - 50px ))
1722 }
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ switch (process.env.NODE_ENV) {
123123 title : 'React Virtualized Tabl Demo' ,
124124 appMountId : 'app' ,
125125 inject : false ,
126+ mobile : true ,
126127 minify : {
127128 removeComments : true ,
128129 collapseWhitespace : true ,
@@ -173,7 +174,8 @@ switch (process.env.NODE_ENV) {
173174 template : 'node_modules/html-webpack-template/index.ejs' ,
174175 title : 'React Virtualized Table Demo' ,
175176 appMountId : 'app' ,
176- inject : false
177+ inject : false ,
178+ mobile : true
177179 } )
178180 ]
179181
You can’t perform that action at this time.
0 commit comments