Skip to content

Commit 7d666e2

Browse files
authored
merge master: fix dark mode colors in delete modal (#125)
2 parents 96a1856 + 6405881 commit 7d666e2

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

apps/frontend/src/pages/App/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function Header({
1919
}: HeaderProps): JSX.Element {
2020
return (
2121
<>
22-
<div className="text-gray-100 bg-gray-800 shadow-md body-font z-50">
22+
<div className="text-gray-100 bg-gray-800 shadow-md z-50">
2323
<div className="px-5 py-2 flex flex-wrap">
2424
{/* Logo */}
2525
<a

apps/frontend/src/pages/Home/Home.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,10 +228,7 @@ export function HomeScreen({ stage, setStage }: HomeScreenProps): JSX.Element {
228228
}
229229

230230
return (
231-
<div
232-
ref={contentSectionRef}
233-
className="h-full px-2 lg:px-8 text-gray-600 body-font"
234-
>
231+
<div ref={contentSectionRef} className="h-full px-2 lg:px-8 text-gray-600">
235232
<div className="flex flex-col">
236233
<div className="m-4 rounded-sm">
237234
<div className="lg:p-4">

apps/frontend/src/pages/Home/stages/Login/LoginAccountDeleteModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ export function LoginAccountDeleteModal(
4545
<div className="fixed left-0 top-0 w-full h-full">
4646
<div className="w-full h-full flex justify-center items-center">
4747
<div
48-
className="w-96 p-4 bg-white rounded-sm border-2 border-gray-200"
48+
className="w-96 p-4 bg-white rounded-sm border-2 border-gray-200 text-gray-700"
4949
ref={wrapperRef}
5050
>
51-
<p className="mb-1 text-2xl text-gray-700">Delete Account</p>
51+
<p className="mb-1 text-2xl">Delete Account</p>
5252
<hr />
5353
<br />
5454
<p>

0 commit comments

Comments
 (0)