Modified box-shadow properties order to work with auto-prefixing

This commit is contained in:
charlesvinette 2020-09-16 15:54:53 -04:00
parent 78ac670088
commit 4cb9f1b575

View File

@ -24,8 +24,7 @@ const STYLES_TEXTAREA = css`
border: 0;
transition: 200ms ease all;
padding: 16px 24px 16px 24px;
box-shadow: 0 0 0 1px inset ${Constants.system.border};
-webkit-box-shadow: inset 0 0 0 1px ${Constants.system.border};
box-shadow: inset 0 0 0 1px ${Constants.system.border};
`;
export class Textarea extends React.Component {