This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix

+9 -4
+5 -1
app/src/components/NavigationBar.module.css
··· 51 51 .logoImage { 52 52 height: auto; 53 53 object-fit: contain; 54 + width: 100%; 54 55 } 55 56 56 57 .navLinks { ··· 199 200 .logo { 200 201 margin: 0 auto; 201 202 justify-content: center; 202 - width: auto; 203 + width: 80%; 204 + max-width: 240px; 203 205 } 204 206 205 207 .logoImage { 206 208 margin: 0 auto; 209 + width: 100%; 207 210 } 208 211 209 212 .navLinks { ··· 211 214 width: 100%; 212 215 overflow-x: auto; 213 216 gap: 0.4rem; 217 + margin-top: 1rem; 214 218 } 215 219 216 220 .secondRow {
+4 -3
app/src/components/NavigationBar.tsx
··· 25 25 return ( 26 26 <nav className={styles.navbar}> 27 27 <div className={styles.navStart}> 28 - <Link href="/" className={styles.logo}> 28 + <Link href="/" className={styles.logo}> 29 29 <Image 30 30 src="/flushes-logo-horizontal.png" 31 31 alt="Flushes Logo" 32 - width={150} 33 - height={40} 32 + width={200} 33 + height={53} 34 + priority 34 35 className={styles.logoImage} 35 36 /> 36 37 </Link>