diff options
author | Quentin Guidée <quentin.guidee@gmail.com> | 2021-12-19 23:54:17 +0100 |
---|---|---|
committer | Quentin Guidée <quentin.guidee@gmail.com> | 2021-12-20 11:02:36 +0100 |
commit | 2ef3a87a465ddc54ad45410cdf3a23c189cb08ea (patch) | |
tree | e0de29a90091212e79b12eb9dc55dbf260cfeb65 /apps/dav | |
parent | d98e31a87218eaa1a0447c3011c8b0a9fc958bd8 (diff) | |
download | nextcloud-server-2ef3a87a465ddc54ad45410cdf3a23c189cb08ea.tar.gz nextcloud-server-2ef3a87a465ddc54ad45410cdf3a23c189cb08ea.zip |
Fix groupware visual issue and improve spacing
Signed-off-by: Quentin Guidée <quentin.guidee@gmail.com>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/src/views/Availability.vue | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/apps/dav/src/views/Availability.vue b/apps/dav/src/views/Availability.vue index 80422df1c76..9bd94fd160e 100644 --- a/apps/dav/src/views/Availability.vue +++ b/apps/dav/src/views/Availability.vue @@ -49,6 +49,7 @@ <button :key="`add-slot-${day.id}`" :disabled="loading" class="icon-add add-another button" + :class="{ 'add-another-not-first': day.slots.length !== 0 }" :title="$t('dav', 'Add slot')" @click="addSlot(day)" /> </template> @@ -196,11 +197,16 @@ export default { .availability-slots { display: flex; padding-left: 8px; + white-space: nowrap; } .availability-slot { display: flex; flex-direction: row; align-items: center; + + &:last-child { + margin-bottom: 12px; + } } .availability-slot-group { display: flex; @@ -217,12 +223,13 @@ export default { width: 120px; } .time-zone { - padding: 12px 12px 12px 0; + padding: 32px 12px 12px 0; } .grid-table { display: grid; + padding-bottom: 24px; grid-column-gap: 20px; - grid-row-gap: 20px; + grid-row-gap: 0px; grid-template-columns: min-content min-content min-content; } .button { @@ -249,6 +256,11 @@ export default { opacity: .5; display: inline-flex; padding: 0; + margin-bottom: 1px; + + &-not-first { + margin-bottom: 15px; + } &:hover { opacity: 1; |