diff --git a/resources/js/modules/editor/partials/canvas/video-editor.jsx b/resources/js/modules/editor/partials/canvas/video-editor.jsx index 6f6aefb..5bb81e8 100644 --- a/resources/js/modules/editor/partials/canvas/video-editor.jsx +++ b/resources/js/modules/editor/partials/canvas/video-editor.jsx @@ -225,8 +225,8 @@ const VideoEditor = ({ width, height }) => { } } else { // Meme overlay: Cover behavior but with some padding/sizing - const memeMaxWidth = canvasWidth; // 80% of canvas width - const memeMaxHeight = canvasHeight; // 80% of canvas height + const memeMaxWidth = canvasWidth; // 100% of canvas width + const memeMaxHeight = canvasHeight; // 100% of canvas height const memeAspect = memeMaxWidth / memeMaxHeight; if (imageAspect > memeAspect) {