Skip to content

Commit

Permalink
Merge pull request #306 from credebl/dark-mode-fixes
Browse files Browse the repository at this point in the history
fix:Dark mode fixes
  • Loading branch information
ajile-in authored Sep 29, 2023
2 parents f37fb1f + dc94f1f commit 635818c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/components/Issuance/CredDefSelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ const CredDefSelection = () => {
const header = [
{ columnName: 'Name' },
{ columnName: 'Created on' },
{ columnName: 'Revocable?' }
{ columnName: 'Revocable?' },
{ columnName: ' ' }
]

//Fetch credential definitions against schemaId
Expand Down
6 changes: 3 additions & 3 deletions src/components/Verification/Verification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ const VerificationCred = () => {
onClick={() => {
window.location.href = `${pathRoutes.back.verification.verification}`
}}
className='bg-secondary-700 ring-primary-700 bg-white-700 hover:bg-secondary-700 ring-2 text-black font-medium rounded-lg text-sm px-4 lg:px-5 py-2 lg:py-2.5 m-2 ml-2 dark:text-white'
style={{ height: '2.5rem', width: '5rem', minWidth: '2rem' }}
className='bg-secondary-700 ring-primary-700 bg-white-700 hover:bg-secondary-700 ring-2 text-black font-medium rounded-lg text-sm px-4 lg:px-5 py-2 lg:py-2.5 mr-2 ml-auto dark:text-white dark:hover:text-black dark:hover:bg-primary-50'
style={{ height: '2.5rem', width: '5rem', minWidth: '2rem' }}
>
<svg className='mr-1' xmlns="http://www.w3.org/2000/svg" width="22" height="12" fill="none" viewBox="0 0 30 20">
<path fill="#1F4EAD" d="M.163 9.237a1.867 1.867 0 0 0-.122 1.153c.083.387.287.742.587 1.021l8.572 7.98c.198.19.434.343.696.447a2.279 2.279 0 0 0 1.657.013c.263-.1.503-.248.704-.435.201-.188.36-.41.468-.655a1.877 1.877 0 0 0-.014-1.543 1.999 1.999 0 0 0-.48-.648l-4.917-4.576h20.543c.568 0 1.113-.21 1.515-.584.402-.374.628-.882.628-1.411 0-.53-.226-1.036-.628-1.41a2.226 2.226 0 0 0-1.515-.585H7.314l4.914-4.574c.205-.184.368-.404.48-.648a1.878 1.878 0 0 0 .015-1.542 1.99 1.99 0 0 0-.468-.656A2.161 2.161 0 0 0 11.55.15a2.283 2.283 0 0 0-1.657.013 2.154 2.154 0 0 0-.696.447L.626 8.589a1.991 1.991 0 0 0-.463.648Z" />
Expand Down Expand Up @@ -264,7 +264,7 @@ const VerificationCred = () => {
</Alert>
</div>
}
<div className="font-montserrat text-base font-semibold leading-6 tracking-normal text-left p-4">
<div className="font-montserrat text-base font-semibold leading-6 tracking-normal text-left dark:text-white p-4">
Attribute List
</div>
<div
Expand Down

0 comments on commit 635818c

Please sign in to comment.