Skip to content

Commit 4e3d42c

Browse files
committed
fix(widget): correct Tailwind class typo v-screen to w-screen
The widget containerClass was using 'v-screen' which is not a valid Tailwind class. Changed to 'w-screen' to properly set full viewport width.
1 parent 77077be commit 4e3d42c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/pro.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ export type {};
404404
command: global.kitCommand,
405405
html: url,
406406
options: {
407-
containerClass: 'overflow-auto flex justify-center items-center v-screen h-screen',
407+
containerClass: 'overflow-auto flex justify-center items-center w-screen h-screen',
408408
draggable: true,
409409
resizable: true,
410410
...options
@@ -430,7 +430,7 @@ let widget: Widget = async (html, options = {}) => {
430430
command: global.kitCommand,
431431
html,
432432
options: {
433-
containerClass: 'overflow-auto flex justify-center items-center v-screen h-screen',
433+
containerClass: 'overflow-auto flex justify-center items-center w-screen h-screen',
434434
draggable: true,
435435
resizable: true,
436436
...options

0 commit comments

Comments
 (0)