Skip to content

Commit

Permalink
feat: add css image create component
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdeDevs committed Dec 15, 2024
1 parent 4f3c5ec commit af2c0d8
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions src/app/image/image-create/image.component.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}

.image-wrapper {
width: 150px;
height: 150px;
overflow: hidden;
position: relative;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
object-fit: cover;
width: 100%;
height: 100%;
}

.remove-icon {
cursor: pointer;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
font-weight: bold;
transition: background-color 0.3s ease;
}

.remove-icon:hover {
background-color: #c82333;
}

.footer-button {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 10px;
background-color: #f8f9fa;
display: flex;
justify-content: center;
z-index: 10;
}

.container {
padding-bottom: 80px;
}


.image-gallery {
margin-bottom: 60px;
}

0 comments on commit af2c0d8

Please sign in to comment.