Tweak login screen styles

This commit is contained in:
Daniel Lautzenheiser 2022-09-20 09:32:31 -04:00
parent 5bc1fc9af0
commit 842bb9c2f9

View File

@ -40,10 +40,12 @@ const AuthInput = styled.input`
width: 100%; width: 100%;
position: relative; position: relative;
z-index: ${zIndex.zIndex1}; z-index: ${zIndex.zIndex1};
border: 1px solid ${colorsRaw.gray};
&:focus { &:focus {
outline: none; outline: none;
box-shadow: inset 0 0 0 2px ${colors.active}; box-shadow: inset 0 0 0 2px ${colors.active};
border: 1px solid transparent;
} }
`; `;