summaryrefslogtreecommitdiffstats
path: root/apps/user_status
diff options
context:
space:
mode:
authorjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2022-11-28 11:25:33 +0100
committernextcloud-command <nextcloud-command@users.noreply.github.com>2022-11-29 07:29:45 +0000
commitaf14bbbbbc08577295882d54fe60e1522624eac6 (patch)
tree295d9b2613362f4e573cc96bc5deaef67be4bcf4 /apps/user_status
parentd92c5f78cec5465833fa78b6f8494fb42041999f (diff)
downloadnextcloud-server-af14bbbbbc08577295882d54fe60e1522624eac6.tar.gz
nextcloud-server-af14bbbbbc08577295882d54fe60e1522624eac6.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.vue7
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;
}