File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -24,23 +24,23 @@ function ComboboxContent() {
2424 code = { `<div className="grid grid-cols-12 gap-6">
2525 <Combobox
2626 id="Strings"
27- className="col-span-4 "
27+ className="col-span-12 xl:col-span-3 "
2828 label="Strings"
2929 value={strings}
3030 onChange={setStrings}
3131 values={['Alpha','Bravo','Charlie']}
3232 />
3333 <Combobox
3434 id="Object"
35- className="col-span-4 "
35+ className="col-span-12 xl:col-span-3 "
3636 label="Object"
3737 value={objects}
3838 onChange={setObjects}
3939 options={{ A:'Alpha', B:'Bravo', C:'Charlie' }}
4040 />
4141 <Combobox
4242 id="Pairs"
43- className="col-span-4 "
43+ className="col-span-12 xl:col-span-6 "
4444 value={pairs}
4545 onChange={setPairs}
4646 label="Multiple from Pairs"
@@ -54,7 +54,7 @@ function ComboboxContent() {
5454</div>` }
5555 >
5656 < div className = "grid grid-cols-12 gap-6" >
57- < div className = "col-span-4 " >
57+ < div className = "col-span-12 xl:col-span-3 " >
5858 < Combobox
5959 id = "Strings"
6060 label = "Strings"
@@ -67,7 +67,7 @@ function ComboboxContent() {
6767 </ div >
6868 </ div >
6969
70- < div className = "col-span-4 " >
70+ < div className = "col-span-12 xl:col-span-3 " >
7171 < Combobox
7272 id = "Object"
7373 label = "Object"
@@ -80,7 +80,7 @@ function ComboboxContent() {
8080 </ div >
8181 </ div >
8282
83- < div className = "col-span-4 " >
83+ < div className = "col-span-12 xl:col-span-6 " >
8484 < Combobox
8585 id = "Pairs"
8686 value = { pairs }
You can’t perform that action at this time.
0 commit comments