This commit is contained in:
typescreep
2025-06-06 13:47:37 +03:00
parent 58e19cd820
commit 70a0ac96a4
2 changed files with 6 additions and 6 deletions

View File

@@ -8,9 +8,9 @@ const CustomCard = styled(Card)`
cursor: pointer;
width: 238px;
box-shadow:
0px 6px 16px 0px #00000014,
0px 3px 6px -4px #0000001f,
0px 9px 28px 8px #0000000d;
0 6px 16px 0 #00000014,
0 3px 6px -4px #0000001f,
0 9px 28px 8px #0000000d;
.ant-card-body {
display: flex;

View File

@@ -12,9 +12,9 @@ const CustomCard = styled(Card)<TCustomCardProps>`
overflow-x: auto;
cursor: ${({ $isDisabled }) => ($isDisabled ? 'not-allowed' : 'pointer')};
box-shadow:
0px 6px 16px 0px #00000014,
0px 3px 6px -4px #0000001f,
0px 9px 28px 8px #0000000d;
0 6px 16px 0 #00000014,
0 3px 6px -4px #0000001f,
0 9px 28px 8px #0000000d;
&:hover {
border-color: ${({ $hoverColor, $isDisabled }) => !$isDisabled && $hoverColor};