fix(#188): tunisia bugs fix

pull/115/head
Rakov Roman 3 years ago
parent 9646f24c03
commit 912ccd452d
  1. 2
      src/features/App/index.tsx
  2. 2
      src/features/Search/styled.tsx

@ -35,7 +35,7 @@ const Main = () => {
const queryClient = new QueryClient() const queryClient = new QueryClient()
useEffect(() => { useEffect(() => {
readToken() && setIsToken(true) if (userInfo) readToken() && setIsToken(true)
}, [userInfo]) }, [userInfo])
// имеется действующий токен // имеется действующий токен

@ -180,7 +180,7 @@ export const Results = styled.div`
background-color: ${({ theme }) => theme.colors.modalBackground}; background-color: ${({ theme }) => theme.colors.modalBackground};
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3); box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
border-radius: 2px; border-radius: 2px;
z-index: 3; z-index: 5;
${isMobileDevice ${isMobileDevice
? css` ? css`
top: 33px; top: 33px;

Loading…
Cancel
Save