Skip to content
Merged
Changes from all commits
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
17 changes: 9 additions & 8 deletions src/components/NcAppSettingsDialog/NcAppSettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -323,13 +323,11 @@ export default {
},
}, [
// app-settings title
this.title
? h('h2', {
attrs: {
class: 'app-settings__title',
},
}, this.title)
: undefined,
h('h2', {
attrs: {
class: 'app-settings__title',
},
}, this.title),

// app-settings navigation + content
h(
Expand Down Expand Up @@ -372,7 +370,10 @@ export default {
flex-direction: column;
min-width: 0;
&__title {
padding-top: 12px;
min-height: $clickable-area;
height: $clickable-area;
line-height: $clickable-area;
padding-top: 4px; // Same as the close button top spacing
text-align: center;
}
&__wrapper {
Expand Down