File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
packages/test-case-component/src/components Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,15 @@ export function ShikiComponent({
13
13
const { spokenForm } = data . command ;
14
14
const { before, during, after } = data ;
15
15
return (
16
- < div className = "max-w-xl overflow-auto p-4" >
16
+ < div className = "mx-16 overflow-auto p-4" >
17
17
< div className = "p-8" >
18
- < h2 className = "dark:text-stone-100" > { data . command } </ h2 >
18
+ < h2 className = "dark:text-stone-100" > { spokenForm } </ h2 >
19
+
19
20
< div className = "m-2 border" >
20
- < Before content = { data . before } />
21
- < div className = "command" > { data . command } </ div >
22
- < During content = { data . during } />
23
- < After content = { data . after } />
21
+ < Before content = { before } />
22
+ < div className = "command" > { spokenForm } </ div >
23
+ < During content = { during } />
24
+ < After content = { after } />
24
25
</ div >
25
26
</ div >
26
27
< details >
You can’t perform that action at this time.
0 commit comments