Skip to content

Commit 918f672

Browse files
committed
fix: minor style changes to list view and multi select
1 parent 3381f26 commit 918f672

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

projects/components/src/list-view/list-view.component.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $horizontal-offset: 12px;
66

77
@mixin grid-view {
88
width: 100%;
9-
padding: 8px 0;
9+
padding: 10px 0;
1010
display: grid;
1111
grid-template-columns: $key-width $value-width;
1212
align-content: center;
@@ -41,7 +41,6 @@ $horizontal-offset: 12px;
4141
.data-row {
4242
@include font-placeholder();
4343
color: $gray-9;
44-
min-height: 40px;
4544
word-break: break-word;
4645

4746
.key,

projects/components/src/multi-select/multi-select.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ import { MultiSelectJustify } from './multi-select-justify';
5757
#triggerContainer
5858
>
5959
<ht-icon *ngIf="this.icon" [icon]="this.icon" [size]="this.iconSize"></ht-icon>
60-
<ng-container *htLoadAsync="this.triggerValues$ as triggerValues">
61-
<div *ngIf="!this.isIconOnlyMode()" class="trigger-label-container">
60+
<ng-container *ngIf="!this.isIconOnlyMode()">
61+
<div class="trigger-label-container" *ngIf="this.triggerValues$ | async as triggerValues">
6262
<ht-label class="trigger-label" [label]="triggerValues.label"></ht-label>
6363
<span *ngIf="triggerValues.selectedItemsCount > 1" class="trigger-more-items"
6464
>+{{ triggerValues.selectedItemsCount - 1 }}</span

0 commit comments

Comments
 (0)