We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8f646c5 + dca00b7 commit 1e0e730Copy full SHA for 1e0e730
src/components/RecipientCard/RecipientCard.module.scss
@@ -21,6 +21,7 @@
21
}
22
23
.card {
24
+ position: relative;
25
overflow: hidden; // ::after 도형 잘리게
26
min-width: 275px;
27
height: 260px;
@@ -41,6 +42,7 @@
41
42
&::after {
43
content: '';
44
position: absolute;
45
+ z-index: -1;
46
47
&.purple {
48
background: $purple-200;
@@ -114,7 +116,7 @@
114
116
115
117
118
&:hover {
- transform: scale(0.96);
119
+ transform: scale(0.96) translateZ(0);
120
121
122
@media (max-width: 767px) {
0 commit comments