Skip to content

Commit

Permalink
Merge pull request #500 from secondl1ght/dark-mode-welcome-onboard
Browse files Browse the repository at this point in the history
Add dark mode to test connection page
  • Loading branch information
bumi authored Dec 30, 2021
2 parents 37af662 + 239218a commit 8924b6b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/app/screens/Onboard/TestConnection/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,10 @@ export default function TestConnection() {
<div>
{errorMessage && (
<div>
<h1 className="text-3xl font-bold">Connection Error</h1>
<p>{errorMessage}</p>
<h1 className="text-3xl font-bold dark:text-white">
Connection Error
</h1>
<p className="dark:text-gray-500">{errorMessage}</p>
<Button label="Edit" onClick={handleEdit} primary />
</div>
)}
Expand Down
6 changes: 4 additions & 2 deletions src/app/screens/Options/TestConnection/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ export default function TestConnection() {
<div>
{errorMessage && (
<div>
<h1 className="text-3xl font-bold">Connection Error</h1>
<p>{errorMessage}</p>
<h1 className="text-3xl font-bold dark:text-white">
Connection Error
</h1>
<p className="dark:text-gray-500">{errorMessage}</p>
<Button label="Edit" onClick={handleEdit} primary />
</div>
)}
Expand Down

0 comments on commit 8924b6b

Please sign in to comment.