Bit of cleanup

This commit is contained in:
2026-04-13 20:03:02 -05:00
parent 5a651d2d1f
commit a30b151e4d
30 changed files with 235 additions and 204 deletions
+7
View File
@@ -0,0 +1,7 @@
/* Object Page container */
.page {
max-width: 1400px;
margin: 0 auto;
padding: var(--gap);
}
@@ -0,0 +1,13 @@
/* Object Section label */
.section-label {
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--text-muted);
}
.section > .section-label {
margin-bottom: 1rem;
}
+5
View File
@@ -0,0 +1,5 @@
/* Object Page section */
.section {
margin-top: var(--gap);
}
+19
View File
@@ -0,0 +1,19 @@
/* Object Shared surface base (background, border, radius) */
.tool-card,
.tool-panel,
.tool-preview,
.empty-state {
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: var(--radius);
}
/* Hover accent border interactive surfaces that highlight on focus/drag */
.tool-card:hover,
.btn:hover:not(:disabled),
.load-area:hover,
.load-area.drag-over,
.tool-preview.drag-over {
border-color: var(--accent-dim);
}
@@ -0,0 +1,7 @@
/* Object Tool grid */
.tool-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 1rem;
}
@@ -0,0 +1,7 @@
/* Object Tool workspace */
.tool-workspace {
margin-top: var(--gap);
display: flex;
gap: 1rem;
}