diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2022-11-29 09:47:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 09:47:02 +0100 |
commit | e450bc4865f1330268080e6bb6007ee31c91c83a (patch) | |
tree | b742942d11ee0039a1fe0e3d8f74256c4dcde78c /apps | |
parent | a1838d2918f687ff1e3347329c76a712f4f8b5aa (diff) | |
parent | af14bbbbbc08577295882d54fe60e1522624eac6 (diff) | |
download | nextcloud-server-e450bc4865f1330268080e6bb6007ee31c91c83a.tar.gz nextcloud-server-e450bc4865f1330268080e6bb6007ee31c91c83a.zip |
Merge pull request #35455 from nextcloud/fix/fix-35098-headings_need_to_be_h2
Change header semantic in the user status dialog
Diffstat (limited to 'apps')
-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; } |