Skip to content

Commit

Permalink
Merge pull request #52 from Official-MoonDao/main
Browse files Browse the repository at this point in the history
Styling adjustments for light mode
  • Loading branch information
namedotget authored Dec 12, 2023
2 parents 4c903c4 + 68041cc commit ce484ac
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions ui/pages/lock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,9 @@ export default function Lock() {
: 'Successfully Created lock'
)
}}
className={`hover:!text-title-light dark:!text-dark-text dark:!bg-slate-600 dark:hover:!bg-slate-700 dark:hover:!text-title-dark`}
className={`hover:!text-title-light
bg-slate-300
dark:!text-dark-text dark:!bg-slate-600 dark:hover:!bg-slate-700 dark:hover:!text-title-dark`}
isDisabled={
(!canIncrease.amount &&
!canIncrease.time &&
Expand All @@ -474,11 +476,15 @@ export default function Lock() {
</div>
) : (
<div>
<p className="">{t('expDesc')}</p>
<p className="text-light-text dark:text-dark-text">
{t('expDesc')}
</p>
<div className="card-actions mt-4">
<PrivyWeb3Button
label={t('withdraw')}
className={`hover:!text-title-light dark:!text-dark-text dark:!bg-slate-600 dark:hover:!bg-slate-700 dark:hover:!text-title-dark`}
className={`hover:!text-title-light
bg-slate-300
dark:!text-dark-text dark:!bg-slate-600 dark:hover:!bg-slate-700 dark:hover:!text-title-dark`}
action={withdraw}
/>
</div>
Expand Down

0 comments on commit ce484ac

Please sign in to comment.