Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/interactives/debt-payoff-calculator/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ export default function DebtPayoffCalculator() {
value={interestRate === 0 ? "" : interestRate}
onChange={(e) => setInterestRate(Number(e.target.value) || 0)}
min="0.1"
className="font-bold text-lagunita block w-full rounded-md shadow-sm py-2 px-3 border pr-10 [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none"
className="font-bold text-[var(--color-teal)] block w-full rounded-md shadow-sm py-2 px-3 border pr-10 [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none"
/>
<span className="absolute right-4 top-1/2 -translate-y-1/2 text-[var(--color-symbols)] pointer-events-none">
%
Expand Down
6 changes: 3 additions & 3 deletions app/interactives/mortgage-calculator-v2/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ export default function MortgageCalculator() {
<p
className={
results.homePrice > 0
? "text-3xl font-bold text-lagunita"
? "text-3xl font-bold text-[var(--color-teal)]"
: "text-lg font-bold text-gray-500 italic"
}
>
Expand Down Expand Up @@ -1603,7 +1603,7 @@ export default function MortgageCalculator() {
<p
className={
results.homePrice > 0
? "text-3xl font-bold text-lagunita"
? "text-3xl font-bold text-[var(--color-teal)]"
: "text-lg font-bold text-gray-500 italic"
}
>
Expand Down Expand Up @@ -1705,7 +1705,7 @@ export default function MortgageCalculator() {
<button
type="button"
onClick={handleReset}
className="inline-flex items-center justify-center rounded-md font-bold ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 px-4 py-2 h-18 whitespace-normal bg-navy border-2 border-navy cursor-pointer hover:bg-white hover:border-2 hover:border-lagunita hover:text-lagunita text-white w-full md:w-auto"
className="inline-flex items-center justify-center rounded-md font-bold ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 px-4 py-2 h-18 whitespace-normal bg-navy border-2 border-navy cursor-pointer hover:bg-white hover:border-2 hover:border-lagunita hover:text-[var(--color-teal)] text-white w-full md:w-auto"
>
Reset
</button>
Expand Down
Loading