Skip to content

Commit b5f34ee

Browse files
committed
ui updates
1 parent e50e761 commit b5f34ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

front-end/components/app-modal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function AppModal({ active, open, onOpenChange }: AppModalProps) {
2727
<Dialog open={open} onOpenChange={onOpenChange}>
2828
<DialogContent className="h-[90vh] w-full md:min-w-[80vw] md:h-[80vh] p-4 overflow-scroll">
2929
{active && (
30-
<div className="flex w-full h-full flex-col gap-6 md:flex-row">
30+
<div className="flex w-full h-full flex-col-reverse gap-6 md:flex-row">
3131
<div className="flex w-full flex-col md:w-2/3">
3232
<div className="flex-1 w-full rounded border">
3333
<iframe
@@ -59,7 +59,7 @@ export function AppModal({ active, open, onOpenChange }: AppModalProps) {
5959
)}`}
6060
target="_blank"
6161
rel="noreferrer"
62-
className="flex items-center gap-2 text-sm bg-black text-white px-2.5 py-1 rounded-lg"
62+
className="flex items-center gap-2 text-sm bg-gray-100 hover:bg-gray-200 px-2.5 py-1 rounded-lg"
6363
>
6464
<Shuffle size={16} /> Open in ChatGPT
6565
</Link>

front-end/components/ui/copy-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const CopyButton = ({
5656
onClick={handleClick}
5757
className="flex items-center gap-2 cursor-pointer z-10"
5858
>
59-
<div className="p-2 rounded-lg bg-gray-100 hover:bg-gray-200 transition-colors duration-100">
59+
<div className="p-2 rounded-lg bg-black text-white hover:bg-gray-800 transition-colors duration-100">
6060
{copied ? (
6161
<Check key="copied-icon" size={16} />
6262
) : (

0 commit comments

Comments
 (0)