File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -214,4 +214,10 @@ This shows on the left
214
214
# Right
215
215
216
216
This shows on the right
217
+
218
+ <style>
219
+ .two-cols-header {
220
+ column-gap: 20px; /* Adjust the gap size as needed */
221
+ }
222
+ </style>
217
223
```
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ You can open a [Cloudflare Quick Tunnels](https://developers.cloudflare.com/clou
52
52
::: code-group
53
53
54
54
``` bash [pnpm]
55
- pnpm dev -- -- remote --tunnel
55
+ pnpm dev --remote --tunnel
56
56
# i.e. slidev --remote --tunnel
57
57
```
58
58
Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ This shows on the left
13
13
This shows on the right
14
14
::bottom::
15
15
This shows at the bottom, aligned to the end (bottom) of the grid
16
+
17
+ <style>
18
+ .two-cols-header {
19
+ column-gap: 20px; /* Adjust the gap size as needed */
20
+ }
21
+ </style>
16
22
```
17
23
-->
18
24
@@ -48,7 +54,7 @@ const props = defineProps({
48
54
.two-cols-header {
49
55
display : grid ;
50
56
grid-template-columns : repeat (2 , 1fr );
51
- grid-template-rows : repeat ( 2 , 1fr ) ;
57
+ grid-template-rows : auto 1fr auto ;
52
58
}
53
59
54
60
.col-header {
Original file line number Diff line number Diff line change @@ -94,9 +94,10 @@ export async function build(
94
94
height : Math . round ( options . data . config . canvasWidth / options . data . config . aspectRatio ) ,
95
95
routerMode : options . data . config . routerMode ,
96
96
waitUntil : 'networkidle' ,
97
- timeout : 30000 ,
97
+ timeout : args . timeout || 30000 ,
98
98
perSlide : true ,
99
99
omitBackground : false ,
100
+ dark : args . dark ,
100
101
} )
101
102
102
103
const tempFiles = await fs . readdir ( tempDir )
You can’t perform that action at this time.
0 commit comments