forked from PalisadoesFoundation/talawa-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed12705
commit 5722239
Showing
19 changed files
with
868 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ let props = { | |
email: '[email protected]', | ||
}; | ||
|
||
describe('Testing Organization Card Component [User Portal]', () => { | ||
describe('Testing PeopleCard Component [User Portal]', () => { | ||
test('Component should be rendered properly', async () => { | ||
render( | ||
<MockedProvider addTypename={false} link={link}> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
.mainContainer { | ||
width: 100%; | ||
padding: 15px; | ||
cursor: pointer; | ||
border-radius: 10px; | ||
/* box-shadow: 2px 2px 8px 0px #c8c8c8; */ | ||
overflow: hidden; | ||
background-color: rgba(50, 187, 107, 0.15); | ||
} | ||
|
||
.cardDetails { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.cardDetail { | ||
display: flex; | ||
flex-direction: row; | ||
gap: 10px; | ||
margin: 5px; | ||
} | ||
|
||
.fillPrimary { | ||
fill: var(--bs-primary) !important; | ||
} | ||
|
||
.badge { | ||
display: flex; | ||
width: fit-content; | ||
background-color: var(--bs-secondary) !important; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.fitContent { | ||
width: fit-content; | ||
} | ||
|
||
.marginTop { | ||
margin-top: 10px; | ||
} |
Oops, something went wrong.