diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-11 23:49:13 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-11 23:49:13 +0900 |
| commit | 7ec06707485ec47615b1b7189f2cde542b83ead1 (patch) | |
| tree | 5c8773e503b1b0b21c31025ac32285285035c89b /src/client | |
| parent | Tweak UI (diff) | |
| download | misskey-7ec06707485ec47615b1b7189f2cde542b83ead1.tar.gz misskey-7ec06707485ec47615b1b7189f2cde542b83ead1.tar.bz2 misskey-7ec06707485ec47615b1b7189f2cde542b83ead1.zip | |
Tweak UI
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/components/modal-page-window.vue | 4 | ||||
| -rw-r--r-- | src/client/pages/settings/index.vue | 8 | ||||
| -rw-r--r-- | src/client/style.scss | 1 | ||||
| -rw-r--r-- | src/client/ui/default.vue | 1 |
4 files changed, 9 insertions, 5 deletions
diff --git a/src/client/components/modal-page-window.vue b/src/client/components/modal-page-window.vue index 6079c08f05..24511215da 100644 --- a/src/client/components/modal-page-window.vue +++ b/src/client/components/modal-page-window.vue @@ -69,8 +69,8 @@ export default defineComponent({ data() { return { - width: 850, - height: 650, + width: 860, + height: 660, pageInfo: null, path: this.initialPath, component: this.initialComponent, diff --git a/src/client/pages/settings/index.vue b/src/client/pages/settings/index.vue index 5a21cf2ff3..eb7469c861 100644 --- a/src/client/pages/settings/index.vue +++ b/src/client/pages/settings/index.vue @@ -73,10 +73,11 @@ export default defineComponent({ }, setup(props, context) { - const INFO = ref({ + const indexInfo = { title: i18n.locale.settings, icon: faCog - }); + }; + const INFO = ref(indexInfo); const page = ref(props.initialPage); const narrow = ref(false); const view = ref(null); @@ -152,6 +153,9 @@ export default defineComponent({ page.value = 'profile'; } else { page.value = props.initialPage; + if (props.initialPage == null) { + INFO.value = indexInfo; + } } }); diff --git a/src/client/style.scss b/src/client/style.scss index 62e3e3c93e..6768e21663 100644 --- a/src/client/style.scss +++ b/src/client/style.scss @@ -241,7 +241,6 @@ hr { border-radius: var(--radius); //border: var(--panelBorder); box-shadow: var(--panelShadow); - overflow: hidden; overflow: clip; } diff --git a/src/client/ui/default.vue b/src/client/ui/default.vue index 78f754184b..1e5b52de8b 100644 --- a/src/client/ui/default.vue +++ b/src/client/ui/default.vue @@ -230,6 +230,7 @@ export default defineComponent({ > .main { margin: 0; + padding-bottom: 92px; border: none; width: 100%; border-radius: 0; |