Skip to content

Commit

Permalink
fix brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
innerjoin committed Nov 4, 2022
1 parent 3b5e1d9 commit 3c89dba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content-elements/base/news-snippet/prototype/template.twig
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
{% set newsSnippetFontSizeHeadline = (fontSizeHeadline ?: properties.fontSizeNewsHeadline) ?: 14 %}
{% set newsSnippetFontSizeText = (fontSizeText ?: properties.fontSizeNewsText) ?: 14 %}
{% set newsSnippetMarginBottom = (marginBottom ?: properties.baseMarginBottom) ?: 12 %}
{% set newsSnippetWidthLeft = (widthLeft ?: (properties.colTwoWideWidth) ?: 440) - 20 %}
{% set newsSnippetWidthRight = (widthRight ?: (properties.colTwoSlimWidth) ?: 220) - 20 %}
{% set newsSnippetWidthLeft = ((widthLeft ?: properties.colTwoWideWidth) ?: 440) - 20 %}
{% set newsSnippetWidthRight = ((widthRight ?: properties.colTwoSlimWidth) ?: 220) - 20 %}

<div data-bsi-element="{{ newsSnippetElementId }}" data-bsi-element-part="{{ newsSnippetElementPartId }}" class="bsi-col-two" style=" margin-bottom: {{ newsSnippetMarginBottom }}px;">
<div data-bsi-news-snippet>
Expand Down

0 comments on commit 3c89dba

Please sign in to comment.