This commit is contained in:
X1627315083
2025-07-24 20:15:39 +08:00
parent e203861586
commit 46b1c5cd71
22 changed files with 1002 additions and 284 deletions

View File

@@ -346,12 +346,12 @@ const handleToolClick = (tool) => {
.tools-sidebar {
display: flex;
flex-direction: column;
gap: 10px;
padding: 15px 10px;
border-right: 1px solid #e0e0e0;
gap: 1.0rem;
padding: 1.5rem 1.0rem;
border-right: .1rem solid #e0e0e0;
background-color: #ffffff;
user-select: none;
min-width: 58px;
min-width: 5.8rem;
height: 100%;
}
@@ -360,12 +360,12 @@ const handleToolClick = (tool) => {
}
.mode-indicator {
margin-bottom: 10px;
padding: 8px;
margin-bottom: 1.0rem;
padding: .8rem;
border-radius: 4px;
background-color: #ffcccc;
color: #a33;
font-size: 14px;
font-size: 1.4rem;
text-align: center;
}
@@ -374,7 +374,7 @@ const handleToolClick = (tool) => {
}
.mode-hint {
font-size: 12px;
margin-top: 4px;
font-size: 1.2rem;
margin-top: .4rem;
}
</style>