Skip to content

Commit

Permalink
refactor(UI): Sorted nav bar colours - making them always gray-300 [2…
Browse files Browse the repository at this point in the history
…024-10-27]
  • Loading branch information
CHRISCARLON committed Oct 27, 2024
1 parent 93822e6 commit 82adb76
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions gridwalk-ui/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ body {
}

@layer base {
:root {
:root {
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
--card: 0 0% 100%;
Expand All @@ -34,7 +34,7 @@ body {
--chart-5: 27 87% 67%;
--radius: 0.5rem;
}
.dark {
.dark {
--background: 222.2 84% 4.9%;
--foreground: 210 40% 98%;
--card: 222.2 84% 4.9%;
Expand Down Expand Up @@ -63,10 +63,10 @@ body {
}

@layer base {
* {
@apply border-border;
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
body {
@apply bg-background text-foreground;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const MapEdits: React.FC<MapEditsProps> = ({
${
selectedEditItem?.id === item.id
? "bg-blue-400 text-white"
: "text-white-600 hover:bg-blue-400"
: "text-gray-300 hover:bg-blue-400"
}
`}
title={item.title}
Expand Down

0 comments on commit 82adb76

Please sign in to comment.