Skip to content

Commit

Permalink
Merge pull request #41 from gunet/dark-theme-buttons
Browse files Browse the repository at this point in the history
Fix buttons' color in dark theme
  • Loading branch information
gkatrakazas authored Sep 15, 2023
2 parents e4b1714 + b124d43 commit b490baf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/Issuers/Issuers.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const Issuers = () => {
You have selected {selectedIssuer?.friendlyName}. If you continue, you will be redirected in the current tab to the issuer's page.
</p>
<div className="flex justify-end space-x-2 pt-4">
<button className="px-4 py-2 text-gray-900 bg-gray-300 hover:bg-gray-400 focus:ring-4 focus:outline-none focus:ring-gray-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-gray-600 dark:hover:bg-gray-700 dark:focus:ring-gray-800" onClick={handleCancel}>
<button className="px-4 py-2 text-gray-900 bg-gray-300 hover:bg-gray-400 focus:ring-4 focus:outline-none focus:ring-gray-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center" onClick={handleCancel}>
Cancel
</button>
<button className="px-4 py-2 text-white bg-blue-600 hover:bg-blue-700 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800" onClick={handleContinue}>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Verifiers/Verifiers.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const Verifiers = () => {
</div>

<div className="flex justify-end space-x-2 pt-4">
<button className="px-4 py-2 text-gray-900 bg-gray-300 hover:bg-gray-400 focus:ring-4 focus:outline-none focus:ring-gray-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-gray-600 dark:hover:bg-gray-700 dark:focus:ring-gray-800" onClick={handleCancel}>
<button className="px-4 py-2 text-gray-900 bg-gray-300 hover:bg-gray-400 focus:ring-4 focus:outline-none focus:ring-gray-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center" onClick={handleCancel}>
Cancel
</button>
<button className="px-4 py-2 text-white bg-blue-600 hover:bg-blue-700 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800" onClick={handleContinue}>
Expand Down

0 comments on commit b490baf

Please sign in to comment.