diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2022-11-28 11:25:33 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2022-11-29 09:13:05 +0000 |
commit | 046675505a211dd158178e9f68b7f7cd9f40bdb2 (patch) | |
tree | e257b73d633ddefffa0418e7f4e4e0a701c92ac8 /apps/user_status | |
parent | 720c7e488137b068fbbcd752a4d709575b349767 (diff) | |
download | nextcloud-server-046675505a211dd158178e9f68b7f7cd9f40bdb2.tar.gz nextcloud-server-046675505a211dd158178e9f68b7f7cd9f40bdb2.zip |
Change header semantic in the user status dialog
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/user_status')
-rw-r--r-- | apps/user_status/src/components/SetStatusModal.vue | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/user_status/src/components/SetStatusModal.vue b/apps/user_status/src/components/SetStatusModal.vue index b04af52eefb..2d500464bff 100644 --- a/apps/user_status/src/components/SetStatusModal.vue +++ b/apps/user_status/src/components/SetStatusModal.vue @@ -26,7 +26,7 @@ <div class="set-status-modal"> <!-- Status selector --> <div class="set-status-modal__header"> - <h3>{{ $t('user_status', 'Online status') }}</h3> + <h2>{{ $t('user_status', 'Online status') }}</h2> </div> <div class="set-status-modal__online-status"> <OnlineStatusSelect v-for="status in statuses" @@ -38,7 +38,7 @@ <!-- Status message --> <div class="set-status-modal__header"> - <h3>{{ $t('user_status', 'Status message') }}</h3> + <h2>{{ $t('user_status', 'Status message') }}</h2> </div> <div class="set-status-modal__custom-input"> <CustomMessageInput ref="customMessageInput" @@ -234,12 +234,11 @@ export default { &__header { text-align: center; font-weight: bold; + margin: 15px 0; } &__online-status { display: grid; - // Space between the two sections - margin-bottom: 40px; grid-template-columns: 1fr 1fr; } |