Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(settings): Align contents of profile picture heading
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Nov 15, 2024
commit a7b0ab2b993307e9d214cf255efe2bf4c2df471b
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -138,6 +138,10 @@ export default {
}
}

.headerbar__heading {
margin: 0;
}

.federation-control {
margin: 0;
}
Expand Down
Loading