优化样式

This commit is contained in:
YI FANG
2025-11-26 10:11:39 +08:00
parent 8155c9f95d
commit 64cb6b6ab0
3 changed files with 33 additions and 8 deletions

View File

@@ -15,3 +15,21 @@ body {
min-height: 100vh;
background-color: #f8fafc;
}
/* 优化下拉选项样式 */
select option {
padding: 8px 12px;
background-color: white;
color: #374151;
font-size: 0.75rem;
}
select option:hover {
background-color: #3b82f6;
color: white;
}
select option:checked {
background-color: #3b82f6;
color: white;
}