js for cost on creating a recipe

This commit is contained in:
kaipher7
2026-04-20 21:09:24 -06:00
parent 37f8cca781
commit ce3cea01c3
2 changed files with 59 additions and 3 deletions
@@ -285,6 +285,30 @@ textarea {
font-size: 12px;
cursor: pointer;
}
/* Cost */
.cost-selector {
display: flex;
gap: 6px;
margin-top: 4px;
}
.dollar {
font-size: 1.7em;
font-weight: 700;
color: var(--dusty-red);
cursor: pointer;
transition: color 0.1s ease;
user-select: none;
}
.dollar.active {
color: var(--dark);
}
.dollar:hover {
color: var(--dusty-red-hover);
}
/* Tags */