update: change user route to POST, update title, and adjust nav text colors
All checks were successful
Deploy To Dokku / deploy (push) Successful in 1m28s

This commit is contained in:
Ari Yeger
2025-08-19 11:18:15 -04:00
parent 983a9b5dd6
commit f3a465e6d7
4 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/src/assets/img/L10n.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>to-do-list-partner</title>
<title>To Do List Partner</title>
</head>
<body>
<div id="app"></div>

View File

@ -44,9 +44,9 @@
--color-form-background-focus: #a4a4a4;
--color-border-1: #333333ff;
--color-border-2: #6D6D6Dff;
--color-nav-text: #178c85;
--color-nav-text-hover: rgb(18.4, 112, 106.4);
--color-nav-text-active: rgb(13.8, 84, 79.8);
--color-nav-text: #c3251e;
--color-nav-text-hover: rgb(156, 29.6, 24);
--color-nav-text-active: rgb(117, 22.2, 18);
--color-nav-text-disabled: #909090ff;
--color-background: #f0f0f0;
--color-background-soft: silver;

View File

@ -70,7 +70,7 @@
--color-border-1: #333333ff;
--color-border-2: #6D6D6Dff;
$color-nav-text: #178c85ff;
$color-nav-text: #c3251eff;
--color-nav-text: #{$color-nav-text};
--color-nav-text-hover: #{color.scale($color-nav-text, $lightness: -20%)};
--color-nav-text-active: #{color.scale($color-nav-text, $lightness: -40%)};