diff --git a/client/pnpm-workspace.yaml b/client/pnpm-workspace.yaml new file mode 100644 index 0000000..ee14c69 --- /dev/null +++ b/client/pnpm-workspace.yaml @@ -0,0 +1,5 @@ +allowBuilds: + '@parcel/watcher': set this to true or false + core-js: set this to true or false + esbuild: set this to true or false + vue-demi: set this to true or false diff --git a/client/src/pages/profile/profile.vue b/client/src/pages/profile/profile.vue index 1e31c13..32c7b05 100644 --- a/client/src/pages/profile/profile.vue +++ b/client/src/pages/profile/profile.vue @@ -454,17 +454,25 @@ function goSettings() { // 菜单 .menu-section { - border-top: 1px solid var(--glass-border); + background: var(--glass-bg); + border: 1px solid var(--glass-border); + border-radius: var(--radius-lg); + overflow: hidden; + margin-bottom: 20px; } .menu-item { display: flex; align-items: center; gap: 14px; - padding: 14px 0; + padding: 15px 16px; border-bottom: 1px solid var(--glass-border); } +.menu-item:last-child { + border-bottom: none; +} + .m-icon { width: 34px; height: 34px; diff --git a/client/src/pages/trend/trend.vue b/client/src/pages/trend/trend.vue index 7eaf6ae..33e21ea 100644 --- a/client/src/pages/trend/trend.vue +++ b/client/src/pages/trend/trend.vue @@ -239,7 +239,7 @@ function getSampleData() { overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; - padding: 0 16px 16px; + padding: 0 0 16px; } .trend-card {