File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change
1
+
1
2
.side-container {
2
3
position : fixed ;
3
4
top : 0 ;
4
5
left : 0 ;
5
- width : 50 % ;
6
+ width : 100 % ;
6
7
z-index : 2000 ;
7
8
background : white ;
8
9
box-shadow : 0 0 30px ;
12
13
transition : transform ease-in-out .2s ;
13
14
padding-top : 0 ;
14
15
16
+ @media screen and (min-width : 800px ) {
17
+ width : 50% ;
18
+ }
19
+
15
20
& .closed {
16
21
transform : translateX (calc (-100% - 50px ))
17
22
}
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ switch (process.env.NODE_ENV) {
123
123
title : 'React Virtualized Tabl Demo' ,
124
124
appMountId : 'app' ,
125
125
inject : false ,
126
+ mobile : true ,
126
127
minify : {
127
128
removeComments : true ,
128
129
collapseWhitespace : true ,
@@ -173,7 +174,8 @@ switch (process.env.NODE_ENV) {
173
174
template : 'node_modules/html-webpack-template/index.ejs' ,
174
175
title : 'React Virtualized Table Demo' ,
175
176
appMountId : 'app' ,
176
- inject : false
177
+ inject : false ,
178
+ mobile : true
177
179
} )
178
180
]
179
181
You can’t perform that action at this time.
0 commit comments