UNPKG

@jjdenhertog/ai-driven-development

Version:

AI-driven development workflow with learning capabilities for Claude

77 lines (67 loc) 1.39 kB
/* Image upload specific styles */ .imagesSection { display: flex; flex-direction: column; gap: 1rem; } .imagesList { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 0.75rem; } .imageItem { position: relative; aspect-ratio: 1; border-radius: 0.5rem; overflow: hidden; border: 1px solid var(--border-color); } .imageWrapper { width: 100%; height: 100%; position: relative; } .imageThumbnail { width: 100%; height: 100%; object-fit: cover; } .removeImageButton { position: absolute; top: 0.25rem; right: 0.25rem; width: 1.5rem; height: 1.5rem; padding: 0; border: none; border-radius: 50%; background: rgba(9, 0, 64, 0.9); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background-color 0.2s; font-size: 0.75rem; } .removeImageButton:hover { background: var(--bg-primary); } .uploadSection { display: flex; align-items: center; gap: 1rem; } .uploadInput { display: none; } .imagesSection.dragging { background: var(--accent-muted); border: 2px dashed var(--accent-color); border-radius: 0.5rem; padding: 1rem; } .imagesSection.dragging .uploadButton { border-color: var(--accent-color); color: var(--accent-color); }