fix(files): adjust column size to new row height

Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
pull/54083/head
skjnldsv 2025-07-25 10:24:05 +07:00 committed by John Molakvoæ
parent de46e39405
commit 8514414d08
1 changed files with 3 additions and 3 deletions

@ -888,7 +888,7 @@ export default defineComponent({
}
.files-list__row-size {
width: calc(var(--row-height) * 1.5);
width: calc(var(--row-height) * 2);
// Right align content/text
justify-content: flex-end;
}
@ -898,11 +898,11 @@ export default defineComponent({
}
.files-list__row-mime {
width: calc(var(--row-height) * 2.5);
width: calc(var(--row-height) * 3.5);
}
.files-list__row-column-custom {
width: calc(var(--row-height) * 2);
width: calc(var(--row-height) * 2.5);
}
}
}