Skip to content

Commit

Permalink
chore: fix stylelint
Browse files Browse the repository at this point in the history
  • Loading branch information
hamed-musallam committed Oct 11, 2024
1 parent 5e0f40f commit 6dad79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component/elements/ReadOnly.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const MessageContainer = styled.div<{ show: boolean }>`
padding: 16px;
border-radius: 5px;
align-items: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
display: ${({ show }) => (show ? 'flex' : 'none')};
animation: ${fadeIn} 0.3s ease;
gap: 8px;
Expand Down

0 comments on commit 6dad79c

Please sign in to comment.