[CST-7217] Improve fix

This commit is contained in:
Giuseppe Digilio
2022-12-30 10:12:15 +01:00
parent 17b8bee824
commit 928431284f
2 changed files with 7 additions and 3 deletions

View File

@@ -2,9 +2,9 @@
[tabIndex]="-1" [tabIndex]="-1"
[routerLink]="[searchLink]" [routerLink]="[searchLink]"
[queryParams]="addQueryParams" queryParamsHandling="merge"> [queryParams]="addQueryParams" queryParamsHandling="merge">
<label class="mb-0"> <label class="mb-0 d-flex w-100">
<input type="checkbox" [checked]="false" class="my-1 align-self-stretch"/> <input type="checkbox" [checked]="false" class="my-1 align-self-stretch filter-checkbox"/>
<span class="filter-value px-1 break-facet"> <span class="w-100 filter-value px-1 break-facet">
{{ 'search.filters.' + filterConfig.name + '.' + filterValue.value | translate: {default: filterValue.value} }} {{ 'search.filters.' + filterConfig.name + '.' + filterValue.value | translate: {default: filterValue.value} }}
</span> </span>
</label> </label>

View File

@@ -10,3 +10,7 @@ a {
.break-facet { .break-facet {
word-break: break-all; word-break: break-all;
} }
.filter-checkbox {
height: fit-content;
}