Skip to content

Commit

Permalink
fix: Fix opacity
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonhyejin committed Nov 21, 2023
1 parent c331dee commit e1a9dcf
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.feature {
color: white;
border: 1px solid transparent;
color: white;
border: 1px solid transparent;
background-image: linear-gradient(to right, #1890ff 0%, #9c27b0 100%);
background-origin: border-box;
opacity: 90%;

&:hover {
opacity: 100%;
background: linear-gradient(to right, #1890ff 0%, #9c27b0 100%);
background-image: linear-gradient(to right, #1890ff 0%, #9c27b0 100%);
background-origin: border-box;

&:hover {
opacity: 90%;
background: linear-gradient(to right, #1890ff 0%, #9c27b0 100%);
background-image: linear-gradient(to right, #1890ff 0%, #9c27b0 100%);
background-origin: border-box;
}

}
}

0 comments on commit e1a9dcf

Please sign in to comment.