Skip to content

Commit

Permalink
Fixed the issue codewithsadee#18
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivRajSingh-SDE committed Aug 17, 2023
1 parent c7d6cd8 commit fa03f6d
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -960,17 +960,32 @@ main {
border-radius: 16px;
overflow: hidden;
margin-bottom: 15px;
transition: transform 0.3s ease;
}

.project-img:hover {
transform: scale(1.05);
}

.project-item-icon-box {
position: absolute;
top: 15px;
left: 15px;
opacity: 0;
z-index: 1;
transition: var(--transition-1), opacity 0.3s ease;
}

.project-img::before {
content: "";
position: absolute;
top: 0;
scale: 105px;
left: 0;
width: 100%;
height: 100%;
background: transparent;
z-index: 1;
z-index: 10;
transition: var(--transition-1);
}

Expand Down

0 comments on commit fa03f6d

Please sign in to comment.