We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63c90e9 commit 88f8c5eCopy full SHA for 88f8c5e
src/components/Header/Header.tsx
@@ -1,4 +1,4 @@
1
-import { useCallback, useState } from 'react';
+import { useState } from 'react';
2
import { useNavigate, useLocation } from 'react-router';
3
import * as S from './Header.styled';
4
import Popup from '../Popup/Popup';
src/pages/Main/BottomInfo/BottomInfo.styles.ts
@@ -105,7 +105,7 @@ export const NotificationContainer = styled.div<{ $isMobile: boolean; $isTablet:
105
`;
106
107
export const NotificationLink = styled.a<{ $isMobile: boolean; $isTablet: boolean }>`
108
- font-size: ${({ $isMobile, $isTablet }) => ($isMobile ? "10px" : "18px")};
+ font-size: ${({ $isMobile }) => ($isMobile ? "10px" : "18px")};
109
color: #333;
110
text-decoration: none;
111
font-weight: 500;
0 commit comments