summaryrefslogtreecommitdiff
path: root/src/client/pages/settings
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-10-24 20:16:55 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-10-24 20:16:55 +0900
commitdfd92efa89be3fce16914f06a8fd83ef23fe705c (patch)
treedfda90d4c3bb90b83f58560e7a16d9ba911ba2cf /src/client/pages/settings
parent:art: (diff)
downloadsharkey-dfd92efa89be3fce16914f06a8fd83ef23fe705c.tar.gz
sharkey-dfd92efa89be3fce16914f06a8fd83ef23fe705c.tar.bz2
sharkey-dfd92efa89be3fce16914f06a8fd83ef23fe705c.zip
:art:
Diffstat (limited to 'src/client/pages/settings')
-rw-r--r--src/client/pages/settings/index.vue46
1 files changed, 27 insertions, 19 deletions
diff --git a/src/client/pages/settings/index.vue b/src/client/pages/settings/index.vue
index 5a396b6a6b..cf053dbe63 100644
--- a/src/client/pages/settings/index.vue
+++ b/src/client/pages/settings/index.vue
@@ -1,9 +1,13 @@
<template>
<div class="vvcocwet" :class="{ wide: !narrow }" ref="el">
<div class="nav" v-if="!narrow || page == null">
- <div class="title">{{ $ts.settings }}</div>
- <MkInfo v-if="emailNotConfigured" warn class="info">{{ $ts.emailNotConfiguredWarning }} <MkA to="/settings/email" class="_link">{{ $ts.configure }}</MkA></MkInfo>
- <MkSuperMenu :def="menuDef" :grid="page == null"></MkSuperMenu>
+ <MkSpacer :content-max="700">
+ <div class="baaadecd">
+ <div class="title">{{ $ts.settings }}</div>
+ <MkInfo v-if="emailNotConfigured" warn class="info">{{ $ts.emailNotConfiguredWarning }} <MkA to="/settings/email" class="_link">{{ $ts.configure }}</MkA></MkInfo>
+ <MkSuperMenu :def="menuDef" :grid="page == null"></MkSuperMenu>
+ </div>
+ </MkSpacer>
</div>
<div class="main">
<component :is="component" :key="page" v-bind="pageProps"/>
@@ -272,22 +276,24 @@ export default defineComponent({
<style lang="scss" scoped>
.vvcocwet {
> .nav {
- > .title {
- margin: 16px;
- font-size: 1.5em;
- font-weight: bold;
- }
+ .baaadecd {
+ > .title {
+ margin: 16px;
+ font-size: 1.5em;
+ font-weight: bold;
+ }
- > .info {
- margin: 0 16px;
- }
+ > .info {
+ margin: 0 16px;
+ }
- > .accounts {
- > .avatar {
- display: block;
- width: 50px;
- height: 50px;
- margin: 8px auto 16px auto;
+ > .accounts {
+ > .avatar {
+ display: block;
+ width: 50px;
+ height: 50px;
+ margin: 8px auto 16px auto;
+ }
}
}
}
@@ -303,8 +309,10 @@ export default defineComponent({
box-sizing: border-box;
overflow: auto;
- > .title {
- margin: 24px;
+ .baaadecd {
+ > .title {
+ margin: 24px 0;
+ }
}
}