Remove input and card shadows

This commit is contained in:
Hazem Krimi
2021-09-05 00:33:53 +01:00
parent d8a6384814
commit 48f988fbd1
2 changed files with 1 additions and 4 deletions
-2
View File
@@ -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)};
`;