settings: fix layout bug

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/672/head
Varun Patil 2023-05-21 20:35:07 -07:00
parent 02644a645f
commit b5a59d457d
1 changed files with 13 additions and 5 deletions

View File

@ -23,6 +23,7 @@
<template> <template>
<div> <div>
<NcAppSettingsDialog <NcAppSettingsDialog
id="memories-settings"
:open="open" :open="open"
:show-navigation="true" :show-navigation="true"
:title="t('memories', 'Memories Settings')" :title="t('memories', 'Memories Settings')"
@ -272,6 +273,12 @@ export default defineComponent({
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
#memories-settings:deep {
.app-settings__content {
// Fix weirdness when focusing on toggle input on mobile
position: relative;
}
.app-settings-section { .app-settings-section {
margin-bottom: 20px !important; margin-bottom: 20px !important;
} }
@ -279,4 +286,5 @@ export default defineComponent({
#sign-out { #sign-out {
margin-top: 10px; margin-top: 10px;
} }
}
</style> </style>