Yellow pending status

This commit is contained in:
Tony Giorgio
2024-01-05 00:11:10 -06:00
committed by Paul Miller
parent f5e693a221
commit 33d3a5ca3d
2 changed files with 7 additions and 1 deletions

View File

@@ -183,7 +183,12 @@ export function ActivityItem(props: {
</Switch>
<Switch>
<Match when={props.date && props.date > 2147483647}>
<time class="text-sm text-neutral-500">
<time class="text-sm text-m-yellow">
{i18n.t("common.pending")}
</time>
</Match>
<Match when={timeAgo(props.date) === "Pending"}>
<time class="text-sm text-m-yellow">
{i18n.t("common.pending")}
</time>
</Match>

View File

@@ -29,6 +29,7 @@ module.exports = {
"m-blue-dark": "hsla(220, 59%, 42%, 1)",
"m-red": "hsla(343, 92%, 54%, 1)",
"m-red-dark": "hsla(343, 92%, 44%, 1)",
"m-yellow": "#E7D538",
"sidebar-gray": "hsla(222, 15%, 7%, 1)",
"m-grey-350": "hsla(0, 0%, 73%, 1)",
"m-grey-400": "hsla(0, 0%, 64%, 1)",