Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinelliott committed Sep 12, 2024
2 parents db74fbe + 19083cf commit 3e4e318
Show file tree
Hide file tree
Showing 24 changed files with 922 additions and 456 deletions.
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html lang="en">
<html lang="en" class="dark:bg-gray-950">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Expand Down
14 changes: 14 additions & 0 deletions frontend/public/images/icons/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions frontend/public/images/icons/dark-mode.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions frontend/public/images/icons/light-mode.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/public/images/icons/menu.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion frontend/src/components/HardwareImg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const HardwareImg = ({ model }: { model: number }) => {
src={`${import.meta.env.BASE_URL}images/hardware/${image}`}
alt={modelName}
title={modelName}
className="w-8 h-8 object-cover"
className="w-8 h-8 object-cover dark:brightness-5"
/>
);
};
5 changes: 4 additions & 1 deletion frontend/src/components/HeardBy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ export const HeardBy = () => {
<>
{" "}
that have been heard by the mesh by{" "}
<Link to={`/nodes/${config?.server?.node_id}`}>
<Link
to={`/nodes/${config?.server?.node_id}`}
className="dark:text-indigo-400 dark:visited:text-indigo-400 dark:hover:text-indigo-500"
>
{config?.server?.node_id}
</Link>{" "}
({config?.server?.node_id})
Expand Down
Loading

0 comments on commit 3e4e318

Please sign in to comment.