diff options
author | Louis Chemineau <louis@chmn.me> | 2024-08-29 11:32:47 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2024-08-29 11:50:25 +0000 |
commit | c42f010167bd0fd075ffbc1c11803c1d7e50ef8b (patch) | |
tree | b3c051a913d9d24e7e39a1f81c12dddaacd3ba98 /apps | |
parent | 6e4e9cf6bdb32ff2e68623ec87986e7cc167bf3b (diff) | |
download | nextcloud-server-c42f010167bd0fd075ffbc1c11803c1d7e50ef8b.tar.gz nextcloud-server-c42f010167bd0fd075ffbc1c11803c1d7e50ef8b.zip |
fix(files): Remove margin and width to not break layout
In grid view, this was messing with the reported available list width which was breaking the computed layout.
Fix https://github.com/nextcloud/server/issues/47599
Signed-off-by: Louis Chemineau <louis@chmn.me>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/src/components/FilesListVirtual.vue | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/files/src/components/FilesListVirtual.vue b/apps/files/src/components/FilesListVirtual.vue index ff231770f49..14c846bc727 100644 --- a/apps/files/src/components/FilesListVirtual.vue +++ b/apps/files/src/components/FilesListVirtual.vue @@ -735,8 +735,6 @@ tbody.files-list__tbody.files-list__tbody--grid { align-items: center; justify-content: space-around; justify-items: center; - margin: 16px; - width: calc(100% - 32px); tr { display: flex; |