icon-overlay-wizard / style.css
phohale's picture
After uploading the image I see the correct preview, but clicking the "2. customize overlays" doesn't change it and when I click any of the download buttons I get the message "Please upload an image first"
4e886f8 verified
Raw
History Blame Contribute Delete
1.15 kB
/* Base styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Drop zone styles */
#dropZone.drag-over {
background-color: #f0f9ff;
border-color: #3b82f6;
}
/* Preview container */
#previewContainer {
border: 2px dashed #e5e7eb;
transition: all 0.3s ease;
}
/* Overlay option buttons */
.overlay-option {
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
background-color: white;
cursor: pointer;
transition: all 0.2s ease;
}
.overlay-option:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.overlay-option.active {
border-color: #3b82f6;
background-color: #eff6ff;
}
/* Responsive adjustments */
@media (max-width: 640px) {
.grid-cols-2 {
grid-template-columns: 1fr;
}
}
/* Overlay styles */
.overlay {
position: absolute;
pointer-events: none;
width: 100%;
height: 100%;
}