Skip to content

Commit

Permalink
Make all texts same boldness
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoJokhan committed Sep 5, 2023
1 parent 2607105 commit 5d91875
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ input.search {
padding: 8px 8px;
border: 2px solid #164995;


&.selected {
background: #164995;
color: white;
Expand All @@ -238,10 +239,12 @@ input.search {
.tag-checkbox + p {
display: inline-block;
vertical-align: middle;
font-weight: 500;
}

.mobile-tag-group-title, .tag-group-title {
margin: 8px 0px;
font-weight: 500;
}

.tag p {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

{% else %}
<div id="tag-group-container-{{ 'tags' if key === 'undefined' else key }}" class="tag-group-container">
<h3 class="{{ tagGroupPrefix }}tag-group-title">{{ "Overig" if key === 'undefined' or key === 'null' else key }}</h3>
<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 {{ 'columned' if data.widget.displayModeColumns else '' }}">

{% if data.widget.displayModeColumns%}
Expand Down

0 comments on commit 5d91875

Please sign in to comment.