diff --git a/packages/file-handling/src/clipboard.js b/packages/file-handling/src/clipboard.js
index ceeb60d0b8f97d5b89f0db325c9d406de0d20e12..fd465a8f7100cc6a779ecaaf77a760655a10791e 100644
--- a/packages/file-handling/src/clipboard.js
+++ b/packages/file-handling/src/clipboard.js
@@ -177,7 +177,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
                         title: i18n.t("clipboard.file-size"),
                         responsive: 4,
                         widthGrow: 1,
-                        minWidth: 65,
+                        minWidth: 84,
                         field: "size",
                         formatter: (cell, formatterParams, onRendered) => {
                             return cell.getRow().getData().type === "directory" ? "" : humanFileSize(cell.getValue());
diff --git a/packages/file-handling/src/nextcloud-file-picker.js b/packages/file-handling/src/nextcloud-file-picker.js
index 7989585139e90998f7dc7f8e7bb7a75581d1f1ef..4938bdb8edd963a2ec26fab7087e0a9d13099106 100644
--- a/packages/file-handling/src/nextcloud-file-picker.js
+++ b/packages/file-handling/src/nextcloud-file-picker.js
@@ -197,7 +197,7 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
                         title: i18n.t('nextcloud-file-picker.size'),
                         responsive: 4,
                         widthGrow: 1,
-                        minWidth: 65,
+                        minWidth: 84,
                         field: "size",
                         formatter: (cell, formatterParams, onRendered) => {
                             return cell.getRow().getData().type === "directory" ? "" : humanFileSize(cell.getValue());