Skip to content

Commit

Permalink
Spelling and styling
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoJokhan committed Jun 6, 2023
1 parent 2ad0552 commit eb249ec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Expand Up @@ -38,7 +38,7 @@
{% endif %}
{% endif %}

<div id="resource-form-tag-group-{{key if key !=='undefined' and key !== 'null' else 'overig'}}" class="form-tag-group">
<div id="resource-form-tag-group-{{key if key !=='undefined' and key !== 'null' else 'Overig'}}" class="form-tag-group">

{% for tag in tagList %}
<div class="checkbox">
Expand Down
Expand Up @@ -150,6 +150,10 @@ input.search {
}
}
}
.mobile-tag-group-title, .tag-group-title {
margin: 8px 0px;
}

.tag p {
margin: 0;
}
Expand Down
@@ -1,6 +1,6 @@
{% for key, tagList in data.widget.groupedOpenstadTags %}
<div class="tag-group-container">
<p class="{{ tagGroupPrefix }}tag-group-title">{{ "tags" if key === 'undefined' else key }}</p>
<p class="{{ tagGroupPrefix }}tag-group-title">{{ "Overig" if key === 'undefined' or key === 'null' else key }}</p>
<div id="{{ tagGroupPrefix }}tag-group-{{ 'tags' if key === 'undefined' else key }}" class="{{ tagGroupPrefix }}tag-group">
{% include 'includes/controls/tag-includes/tag-buttons.njk' %}
</div>
Expand Down

1 comment on commit eb249ec

@github-actions
Copy link

Choose a reason for hiding this comment

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

Published new image: openstad/frontend:feature-prefix-tag-container-with-unique-id-eb249ec

Please sign in to comment.