alpha
Login
or
Join now
atpota.to
/
flushes.app
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix
author
damedotblog
date
1 year ago
(Mar 17, 2025, 11:26 AM -0400)
commit
8d7554df
8d7554df71265ec45c384bff4d6dc68eb4a9bc3e
parent
83a1ebb9
83a1ebb91c9abacabec892d818a378de72b3bb06
+9
-4
2 changed files
Expand all
Collapse all
Unified
Split
app
src
components
NavigationBar.module.css
NavigationBar.tsx
+5
-1
app/src/components/NavigationBar.module.css
Reviewed
···
51
51
.logoImage {
52
52
height: auto;
53
53
object-fit: contain;
54
54
+
width: 100%;
54
55
}
55
56
56
57
.navLinks {
···
199
200
.logo {
200
201
margin: 0 auto;
201
202
justify-content: center;
202
202
-
width: auto;
203
203
+
width: 80%;
204
204
+
max-width: 240px;
203
205
}
204
206
205
207
.logoImage {
206
208
margin: 0 auto;
209
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
217
+
margin-top: 1rem;
214
218
}
215
219
216
220
.secondRow {
+4
-3
app/src/components/NavigationBar.tsx
Reviewed
···
25
25
return (
26
26
<nav className={styles.navbar}>
27
27
<div className={styles.navStart}>
28
28
-
<Link href="/" className={styles.logo}>
28
28
+
<Link href="/" className={styles.logo}>
29
29
<Image
30
30
src="/flushes-logo-horizontal.png"
31
31
alt="Flushes Logo"
32
32
-
width={150}
33
33
-
height={40}
32
32
+
width={200}
33
33
+
height={53}
34
34
+
priority
34
35
className={styles.logoImage}
35
36
/>
36
37
</Link>