build: 更新.gitignore并添加TailwindCSS和OpenAI依赖

This commit is contained in:
dmy
2026-01-14 01:10:48 +08:00
parent 6a9c52fe10
commit 571eea0f66
8 changed files with 1044 additions and 58 deletions

View File

@@ -77,6 +77,7 @@ onUnmounted(() => {
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #f5f5f5;
font-size: 12px;
}
.app-container {
@@ -88,15 +89,15 @@ body {
display: flex;
background: #fff;
border-bottom: 1px solid #e0e0e0;
padding: 0 20px;
padding: 0 8px;
}
.tab-button {
padding: 16px 24px;
padding: 8px 12px;
background: none;
border: none;
border-bottom: 2px solid transparent;
font-size: 14px;
font-size: 12px;
font-weight: 500;
color: #666;
cursor: pointer;
@@ -114,17 +115,17 @@ body {
}
.tab-content {
padding: 20px;
padding: 8px;
}
.refresh-button {
margin-left: auto;
padding: 8px 16px;
padding: 4px 10px;
background: #3498db;
color: #fff;
border: none;
border-radius: 4px;
font-size: 14px;
border-radius: 3px;
font-size: 11px;
cursor: pointer;
transition: all 0.2s ease;
}
@@ -141,8 +142,8 @@ body {
display: flex;
align-items: center;
justify-content: center;
min-height: 400px;
min-height: 200px;
color: #999;
font-size: 16px;
font-size: 12px;
}
</style>