Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinDev committed Mar 16, 2022
1 parent 460cf8c commit 6395b42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -2,7 +2,7 @@

{% if (needBlockWrapper(block) or (block.data.stretched is defined and block.data.stretched)) %}<div{{ blockWrapperAttr(block.data,
block.data.stretched is defined and block.data.stretched
? {'class':'lg:-mx-32'} : {}) }}>{% endif %}
? {'class':'lg:-mx-40'} : {}) }}>{% endif %}

{{ video(block.data.serviceUrl, block.data.image.url, block.data.alternativeText) }}

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/Twig/UnproseTwigTrait.php
Expand Up @@ -9,7 +9,7 @@ trait UnproseTwigTrait
*/
public function unprose(string $html): string
{
$unproseClass = 'not-prose lg:-mx-32 my-6';
$unproseClass = 'not-prose lg:-mx-40 my-6';

return '<div class="'.$unproseClass.'">'.$html.'</div>';
}
Expand Down

0 comments on commit 6395b42

Please sign in to comment.