Fix module issues, fix styling, add conditions to when the background removal and edit controls are shown

This commit is contained in:
khalid@traclabs.com
2026-04-23 08:48:11 -05:00
parent 4d19363d58
commit 628a6765f4
32 changed files with 11663 additions and 287 deletions

View File

@@ -1 +1,37 @@
/* App-level styles — project styles go here */
.canvas-header {
position: absolute;
top: 20px;
text-align: center;
}
.canvas-header h1 {
margin: 0 0 0.25rem 0;
font-size: 20px;
color: var(--text-primary);
}
.canvas-header p {
margin: 0;
font-size: 12px;
color: var(--text-secondary);
}
.canvas-toolbar {
position: absolute;
top: 100px;
display: flex;
gap: 0.5rem;
margin-bottom: 1rem;
justify-content: center;
}
.layers-panel-wrapper {
position: absolute;
bottom: 20px;
width: 100%;
max-width: 400px;
background: var(--bg-primary);
border-radius: var(--radius-md);
padding: 1rem;
box-shadow: var(--shadow-md);
}