Skip to content

Commit

Permalink
fix: misc styling
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-chaturvedi committed Dec 10, 2024
1 parent aac6301 commit 625d138
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion frontend/components/environments/secrets/HistoryDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,9 @@ export const HistoryDialog = ({
</div>
<span className="text-neutral-500 text-sm">by</span>

{eventCreatedBy(historyItem!)}
<div className="text-zinc-900 dark:text-zinc-100">
{eventCreatedBy(historyItem!)}
</div>
</div>
{index > 0 && (
<SecretPropertyDiffs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const SecretPropertyDiffs = (props: {
<div>
<s className=" text-red-500 ph-no-capture">{previousItem.value}</s>
</div>
<div className="flex items-center justify-end">
<div className="flex items-center justify-end p-1">
<Button
variant="outline"
onClick={() => handleRestoreValue(previousItem.value)}
Expand Down

0 comments on commit 625d138

Please sign in to comment.