File tree Expand file tree Collapse file tree
src/content/reference/react Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -706,6 +706,8 @@ export default SlowList;
706706``` css
707707.items {
708708 padding : 0 ;
709+ max-height : 300px ;
710+ overflow : auto ;
709711}
710712
711713.item {
@@ -783,6 +785,8 @@ export default SlowList;
783785``` css
784786.items {
785787 padding : 0 ;
788+ max-height : 300px ;
789+ overflow : auto ;
786790}
787791
788792.item {
Original file line number Diff line number Diff line change @@ -736,6 +736,10 @@ export default function ContactTab() {
736736button { margin-right : 10px }
737737b { display : inline-block ; margin-right : 10px ; }
738738.pending { color : #777 ; }
739+ .items {
740+ max-height : 300px ;
741+ overflow : auto ;
742+ }
739743```
740744
741745</Sandpack >
@@ -891,6 +895,10 @@ export default function ContactTab() {
891895button { margin- right: 10px }
892896b { display: inline- block; margin- right: 10px ; }
893897.pending { color: #777 ; }
898+ .items {
899+ max- height: 300px ;
900+ overflow: auto;
901+ }
894902` ` `
895903
896904</Sandpack>
You can’t perform that action at this time.
0 commit comments