From a30a5cafb700c86088a71597e2cc9fff3440946f Mon Sep 17 00:00:00 2001 From: nsemets Date: Wed, 15 Apr 2026 13:03:37 +0300 Subject: [PATCH] fix(collections): fixed width of filters --- .../collections-main-content.component.html | 12 +++++++----- .../collections-main-content.component.scss | 4 ++++ 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/app/features/collections/components/collections-main-content/collections-main-content.component.html b/src/app/features/collections/components/collections-main-content/collections-main-content.component.html index 276aa9190..7bc4a1f67 100644 --- a/src/app/features/collections/components/collections-main-content/collections-main-content.component.html +++ b/src/app/features/collections/components/collections-main-content/collections-main-content.component.html @@ -73,11 +73,13 @@

{{ 'collections.searchResults.noResults' | translate }} @if (isWeb()) { - @if (!isCollectionLoading()) { - - } @else { - - } +
+ @if (!isCollectionLoading()) { + + } @else { + + } +
} diff --git a/src/app/features/collections/components/collections-main-content/collections-main-content.component.scss b/src/app/features/collections/components/collections-main-content/collections-main-content.component.scss index 7a7ac0cb2..75d67818b 100644 --- a/src/app/features/collections/components/collections-main-content/collections-main-content.component.scss +++ b/src/app/features/collections/components/collections-main-content/collections-main-content.component.scss @@ -13,3 +13,7 @@ .card-selected { background: var(--bg-blue-2); } + +.filters-column { + flex: 0 0 22rem; +}