mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-02 02:10:27 +00:00
Remove input and card shadows
This commit is contained in:
@@ -16,7 +16,6 @@ const SmallField = styled.input<{ dark: boolean }>`
|
||||
border: none;
|
||||
padding: 1rem;
|
||||
background: ${({ dark, theme }) => (dark ? '#2f2f2f' : theme.colors.dark.text)};
|
||||
box-shadow: ${({ dark }) => !dark && `1px 1px 10px 0px rgba(0, 0, 0, 0.15)`};
|
||||
color: ${({ dark, theme }) => (dark ? theme.colors.dark.text : theme.colors.light.text)};
|
||||
`;
|
||||
|
||||
@@ -25,7 +24,6 @@ const BigField = styled.textarea<{ dark: boolean }>`
|
||||
border: none;
|
||||
padding: 1rem;
|
||||
background: ${({ dark, theme }) => (dark ? '#2f2f2f' : theme.colors.dark.text)};
|
||||
box-shadow: ${({ dark }) => !dark && `1px 1px 10px 0px rgba(0, 0, 0, 0.15)`};
|
||||
color: ${({ dark, theme }) => (dark ? theme.colors.dark.text : theme.colors.light.text)};
|
||||
`;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user