fix(settings): Align contents of profile picture heading

Signed-off-by: Christopher Ng <chrng8@gmail.com>
pull/48981/head
Christopher Ng 2024-10-04 16:34:41 +07:00
parent c7fb0ed9c6
commit a7b0ab2b99
2 changed files with 6 additions and 2 deletions

@ -259,7 +259,7 @@ section {
}
.avatar {
&__container {
margin: 0 auto;
margin: calc(var(--default-grid-baseline) * 2) auto 0 auto;
display: flex;
flex-direction: column;
justify-content: center;

@ -5,7 +5,7 @@
<template>
<div class="headerbar-label" :class="{ 'setting-property': isSettingProperty, 'profile-property': isProfileProperty }">
<h3 v-if="isHeading">
<h3 v-if="isHeading" class="headerbar__heading">
<!-- Already translated as required by prop validator -->
{{ readable }}
</h3>
@ -138,6 +138,10 @@ export default {
}
}
.headerbar__heading {
margin: 0;
}
.federation-control {
margin: 0;
}