File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 99 -webkit-overflow-scrolling : touch;
1010}
1111
12+ .builder {
13+ overflow : auto;
14+ height : 100vh ;
15+ background : var (--color-background );
16+ }
17+
1218.pageWrapper {
1319 display : grid;
1420 grid-template-columns : repeat (auto-fit, minmax (15rem , 1fr ));
Original file line number Diff line number Diff line change @@ -433,14 +433,7 @@ function BuilderPage({
433433 } }
434434 render = { ( { style } ) => (
435435 < main className = { styles . root } style = { style } >
436- < div
437- id = "builder"
438- style = { {
439- overflow : "auto" ,
440- height : "100vh" ,
441- background : colors . primary ,
442- } }
443- >
436+ < div id = "builder" className = { styles . builder } >
444437 < button
445438 className = { styles . closeButton }
446439 aria-label = "close builder"
Original file line number Diff line number Diff line change 1414}
1515
1616.icon {
17- border : 1px solid white ;
17+ border : 1px solid var ( --color-text ) ;
1818 margin-left : 0 ;
1919 margin-right : 5px ;
2020}
You can’t perform that action at this time.
0 commit comments