Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Landing page paragraph spacing #411

Merged
merged 3 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

* [PR-411](https://github.com/itk-dev/hoeringsportal/pull/411)
Fix paragraph spacing
* [PR-409](https://github.com/itk-dev/hoeringsportal/pull/409)
Enabled and configured log_stdout
* [PR-410](https://github.com/itk-dev/hoeringsportal/pull/410)
Expand Down
1 change: 1 addition & 0 deletions config/sync/clamav.settings.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
_core:
default_config_hash: pfrv6lPS72f5WG1UB4wHkgQV2invlHwVpaCy_mY-ClQ
langcode: da
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔥

enabled: true
outage_action: 0
overridden_schemes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
{% endif %}
</div>

<div {{ attributes.addClass('projects', 'container') }}>
<div {{ attributes.addClass('projects') }}>
{{ ds_content|without('field_teaser', 'field_media_image_single') }}
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
#}

{% for item in items %}
<div class="col">{{ item.content }}</div>
<div class="col-md-4 mb-4 mb-md-0">{{ item.content }}</div>
{% endfor %}
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* @ingroup themeable
*/
#}
<div class="container">
<div class="container my-3 my-md-5">
<div class="row">
<div class="col-md-12">
{% if content.field_paragraph_title['#items'] is not empty %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{# Paragraph for exposing downloadable files #}

<div class="container">
<div class="container my-3 my-md-5">
<div class="row">
<div class="col-md-8">
{% block paragraph %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* @ingroup themeable
*/
#}
<div class="container">
<div class="container my-3 my-md-5">
<div class="row">
<div class="col-md-8">
<div class="info-box rounded overflow-hidden {{ elements.field_variant_select.0['#markup']|clean_class }}">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="container">
<div class="container my-3 my-md-5">
<div class="row">
<div class="col-md-12">
{% if paragraph.field_paragraph_title.value %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="container">
<div class="container my-3 my-md-5">
<div class="row">
<div class="{{ paragraph.field_aside_block.value ? 'col-md-8' : 'col-md-12' }}">
{% if paragraph.field_title.value %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* @ingroup themeable
*/
#}
<div class="container">
<div class="container my-3 my-md-5">
<div class="row">
<div class="col-md-12">
{% block paragraph %}
Expand Down
Loading