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 @@ -32,7 +32,7 @@ export default function TryItOut() {
3232 < div >
3333 < Accordion collapsible type = "single" >
3434 { tabs . map ( ( tab , idx ) => (
35- < AccordionItem value = { String ( idx ) } className = { styles . accordionItem } >
35+ < AccordionItem key = { idx } value = { String ( idx ) } className = { styles . accordionItem } >
3636 < AccordionTrigger className = { styles . accordionTrigger } >
3737 { tab . title } { " " }
3838 < Typography variant = "code" className = { styles . indicator } >
Original file line number Diff line number Diff line change 7272}
7373
7474.body {
75- max-width : 1440 px ;
75+ max-width : var ( --fullwidth-max-width ) ;
7676 width : 100% ;
7777 margin : 0 auto;
7878}
79+
80+ @media screen and (max-width : 768px ) {
81+ .content {
82+ grid-template-columns : 1fr ;
83+ padding : 0 var (--space-8x );
84+ }
85+ }
You can’t perform that action at this time.
0 commit comments