Compare commits

..

No commits in common. "554072e9dd474f59eb5246ae671f4808fdac24c6" and "6e07dcb09a2a0f01fa21d9d2fb72189345bcc9c8" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -412,7 +412,7 @@ function render() {
<span class="project-title">${project.name}</span>
</div>
<div class="project-actions">
<button class="btn-rename-project" onclick="renameProject(${project.id})" title="Rename project"><span class="icon-pencil"></span></button>
<button class="btn-rename-project" onclick="renameProject(${project.id})" title="Rename project"></button>
<button class="btn-add-part" onclick="openModal('addPart', ${project.id})">+ Part</button>
<button class="btn-delete-project" onclick="deleteProject(${project.id})">×</button>
</div>

View File

@ -184,7 +184,6 @@ h1 {
padding: 5px 8px; border-radius: 8px; font-size: 1rem; cursor: pointer;
}
.btn-rename-project:hover { color: var(--project-color); }
.icon-pencil { display: inline-block; transform: scaleX(-1); }
/* --- PART CARD --- */
.part-card {