Skip to content

Commit be52167

Browse files
fix scrollbar
1 parent 96b5a8b commit be52167

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

app/src/app/globals.css

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -351,26 +351,27 @@ section table {
351351
}
352352

353353
::-webkit-scrollbar-track {
354-
background: var(--background);
354+
background: #181b26; /* darker track */
355355
border-radius: var(--border-radius-medium);
356356
}
357357

358358
::-webkit-scrollbar-thumb {
359-
background-color: #3c445a;
360-
border: 4px solid var(--background);
359+
background-color: #2b3244; /* darker thumb */
360+
border: 3px solid #181b26; /* match track background */
361361
border-radius: var(--border-radius-medium);
362362
transition: background-color var(--transition-fast);
363363
}
364364

365365
::-webkit-scrollbar-thumb:hover {
366-
background-color: #4e5a76;
366+
background-color: #40485c; /* subtle hover */
367367
}
368368

369369
::-webkit-scrollbar-corner {
370-
background: var(--background);
370+
background: #181b26;
371371
}
372372

373+
/* Firefox */
373374
* {
374-
scrollbar-width: auto;
375-
scrollbar-color: #3c445a var(--background);
375+
scrollbar-width: thin;
376+
scrollbar-color: #2b3244 #181b26;
376377
}

app/src/components/ui/Footer/Footer.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ const Footer: React.FC = () => {
5555
<span className="font-semibold text-[var(--foreground)] group-hover:text-[var(--text-link-color)] transition-colors">
5656
Kargo Frontend
5757
</span>
58-
<span className="text-xs text-[var(--foreground)]/50 mt-1">Next.js application</span>
5958
</div>
6059
<svg
6160
className="w-5 h-5 text-[var(--foreground)]/30 group-hover:text-[var(--text-link-color)] transition-colors"
@@ -82,7 +81,6 @@ const Footer: React.FC = () => {
8281
<span className="font-semibold text-[var(--foreground)] group-hover:text-[var(--text-link-color)] transition-colors">
8382
Kargo Backend
8483
</span>
85-
<span className="text-xs text-[var(--foreground)]/50 mt-1">Node.js API server</span>
8684
</div>
8785
<svg
8886
className="w-5 h-5 text-[var(--foreground)]/30 group-hover:text-[var(--text-link-color)] transition-colors"

0 commit comments

Comments
 (0)