Revert "Reduce spacing in one column layout"

This reverts commit aec07978e6.
This commit is contained in:
Oliver Davies 2024-04-13 20:23:16 +01:00
parent f670165324
commit b30cb1ff84

View file

@ -0,0 +1,18 @@
{#
/**
* @file
* Theme override to display a one-column layout.
*
* Available variables:
* - in_preview: Whether the plugin is being rendered in preview mode.
* - content: The content for this layout.
* - attributes: HTML attributes for the layout <div>.
*/
#}
{% if content %}
<div{{ attributes }}>
<div {{ region_attributes.content.addClass('space-y-10') }}>
{{ content.content }}
</div>
</div>
{% endif %}