Skip to content

Commit 1779643

Browse files
committed
Fix bug in Nav with desktop styles not showing
1 parent 51f1d30 commit 1779643

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

components/layout/Nav/Nav.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { useState, useEffect, useRef } from 'react';
22
import { useRouter } from 'next/router';
33
import Link from 'next/link';
44
import Container from '@/components/containers/Container/Container';
5-
// import styles from '@/styles/Nav.module.scss';
65
import { linksNav } from '@/utils/links';
76
import S from './styles';
87

components/layout/Nav/styles.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ const Logo = styled.img`
140140
`;
141141

142142
const LogoSticky = css`
143-
width: 4.5rem;
143+
width: 4.5rem !important;
144144
filter: brightness(0) saturate(100%);
145145
`;
146146

@@ -230,7 +230,7 @@ const Link = styled.a`
230230
`;
231231

232232
const LinkSticky = css`
233-
font-size: 1.2rem;
233+
font-size: 1.2rem !important;
234234
`;
235235

236236
const Item = styled.li`

0 commit comments

Comments
 (0)