1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-02-07 23:38:48 +01:00

Merge pull request #1052 from h3poteto/fix/design/scroll

Fix scrollbar design for preferences and settings
This commit is contained in:
AkiraFukushima 2019-09-27 00:02:52 +09:00 committed by GitHub
commit 6e1456b48d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 38 deletions

View File

@ -74,6 +74,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
#preferences { #preferences {
height: 100%; height: 100%;
overflow: auto;
.header { .header {
text-align: center; text-align: center;

View File

@ -18,7 +18,8 @@
class="setting-menu" class="setting-menu"
:text-color="primaryColor" :text-color="primaryColor"
:background-color="backgroundColor" :background-color="backgroundColor"
:router="true"> :router="true"
>
<el-menu-item :index="`/${id()}/settings/general`"> <el-menu-item :index="`/${id()}/settings/general`">
<icon name="cog" class="icon" scale="1.3"></icon> <icon name="cog" class="icon" scale="1.3"></icon>
<span>{{ $t('settings.general.title') }}</span> <span>{{ $t('settings.general.title') }}</span>
@ -68,6 +69,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
#settings { #settings {
height: 100%; height: 100%;
overflow: auto;
.header { .header {
text-align: center; text-align: center;