diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-09-14 10:46:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 10:46:49 +0200 |
commit | 77680ac0891af0fc4be5b97982bde6f5e1aae19e (patch) | |
tree | 2a6795eff35289d39fe93f0b379a785f1bc3ec25 /apps/files_sharing | |
parent | eff8919386e43eee98948b722d1ea0b65101c34a (diff) | |
parent | 5d083d0b4669bc8dbc8a364918b5f5dd4d14c847 (diff) | |
download | nextcloud-server-77680ac0891af0fc4be5b97982bde6f5e1aae19e.tar.gz nextcloud-server-77680ac0891af0fc4be5b97982bde6f5e1aae19e.zip |
Merge pull request #34062 from nextcloud/enh/sharing-tab-alignment-and-spacing
Align sharing tab content and increase spacing
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/src/views/SharingTab.vue | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/apps/files_sharing/src/views/SharingTab.vue b/apps/files_sharing/src/views/SharingTab.vue index 8ab3cf0f9ff..d1416a6c0d1 100644 --- a/apps/files_sharing/src/views/SharingTab.vue +++ b/apps/files_sharing/src/views/SharingTab.vue @@ -29,7 +29,7 @@ </div> <!-- shares content --> - <template v-else> + <div v-else class="sharingTab__content"> <!-- shared with me information --> <SharingEntrySimple v-if="isSharedWithMe" v-bind="sharedWithMe" class="sharing-entry__reshare"> <template #avatar> @@ -73,7 +73,7 @@ :id="`${fileInfo.id}`" type="file" :name="fileInfo.name" /> - </template> + </div> <!-- additional entries, use it with cautious --> <div v-for="(section, index) in sections" @@ -364,7 +364,13 @@ export default { .emptyContentWithSections { margin: 1rem auto; } -.sharingTab__additionalContent { - margin: 20px 0; + +.sharingTab { + &__content { + padding: 0 6px; + } + &__additionalContent { + margin: 44px 0; + } } </style> |