This commit is contained in:
Julian Freeman
2026-04-04 19:58:17 -04:00
parent ff238eb534
commit bba113e089
4 changed files with 9 additions and 9 deletions

View File

@@ -66,7 +66,7 @@
font-size: 20px; font-size: 20px;
font-weight: 700; font-weight: 700;
margin-bottom: 40px; margin-bottom: 40px;
padding-left: 20px; padding-left: 10px;
color: var(--text-main); color: var(--text-main);
} }

View File

@@ -111,7 +111,7 @@ onMounted(() => {
} }
.sticky-header { .sticky-header {
padding: 40px 60px 10px 60px; padding: 24px 60px 8px 60px;
background-color: #F5F5F7; /* 与 App.vue 背景色保持一致 */ background-color: #F5F5F7; /* 与 App.vue 背景色保持一致 */
z-index: 10; z-index: 10;
flex-shrink: 0; flex-shrink: 0;
@@ -120,14 +120,14 @@ onMounted(() => {
.scroll-content { .scroll-content {
flex: 1; flex: 1;
overflow-y: auto; overflow-y: auto;
padding: 10px 60px 40px 60px; padding: 8px 60px 32px 60px;
} }
.content-header { .content-header {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
margin-bottom: 24px; margin-bottom: 16px;
} }
.header-left { .header-left {

View File

@@ -47,8 +47,8 @@
<section class="settings-section"> <section class="settings-section">
<h3 class="section-title">关于</h3> <h3 class="section-title">关于</h3>
<div class="settings-card about-card"> <div class="settings-card about-card">
<p>Windows 软件管理 v{{ version }}</p> <p>Windows 软件管理 v{{ version }}</p>
<p class="hint">基于 Tauri WinGet 构建的 Windows 软件管理工具</p> <p class="hint">基于 WinGet 构建的 Windows 软件管理工具</p>
</div> </div>
</section> </section>
</div> </div>

View File

@@ -112,7 +112,7 @@ onMounted(() => {
} }
.sticky-header { .sticky-header {
padding: 40px 60px 10px 60px; padding: 24px 60px 8px 60px;
background-color: #F5F5F7; background-color: #F5F5F7;
z-index: 10; z-index: 10;
flex-shrink: 0; flex-shrink: 0;
@@ -121,14 +121,14 @@ onMounted(() => {
.scroll-content { .scroll-content {
flex: 1; flex: 1;
overflow-y: auto; overflow-y: auto;
padding: 10px 60px 40px 60px; padding: 8px 60px 32px 60px;
} }
.content-header { .content-header {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
margin-bottom: 24px; margin-bottom: 16px;
} }
.content-header h1 { .content-header h1 {