Skip to content

Commit 438295e

Browse files
fix(files-list): allow status chip to expand width in grid view mode
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 8575e5b commit 438295e

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/views/FilesList/FilesListVirtual.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -581,8 +581,11 @@ tbody.files-list__tbody.files-list__tbody--grid {
581581
position: absolute;
582582
top: var(--item-padding);
583583
inset-inline-end: var(--item-padding);
584-
width: var(--clickable-area);
585-
height: var(--clickable-area);
584+
width: auto;
585+
max-width: calc(var(--row-width) - 2 * var(--item-padding));
586+
height: auto;
587+
min-height: var(--clickable-area);
588+
justify-content: flex-end;
586589
}
587590
588591
.files-list__row-signers {

0 commit comments

Comments
 (0)