diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-10-18 16:47:29 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-10-19 12:50:14 +0000 |
commit | bfa7d33912e9e546f4c847d1c7c6b8a983658e9c (patch) | |
tree | 35e31709561e0430a41386af186330034765d253 /apps | |
parent | a572a547f97e8643863958fba12410ac1a60db54 (diff) | |
download | nextcloud-server-bfa7d33912e9e546f4c847d1c7c6b8a983658e9c.tar.gz nextcloud-server-bfa7d33912e9e546f4c847d1c7c6b8a983658e9c.zip |
Reduce width of sharing entry
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntry.vue | 4 | ||||
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index 3bf13343517..84525fa2f0c 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -158,8 +158,8 @@ export default { display: flex; flex-direction: column; justify-content: center; - width: 80%; - min-width: 80%; + flex: 1 0; + min-width: 0; &__desc { display: inline-block; diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 896ca1bbc95..3247b989f67 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -755,8 +755,8 @@ export default { padding-left: 10px; display: flex; justify-content: space-between; - width: 80%; - min-width: 80%; + flex: 1 0; + min-width: 0; &__desc { display: flex; |