-
-
Notifications
You must be signed in to change notification settings - Fork 756
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'group-chat-features' of https://github.com/disha1202/ta…
…lawa-admin into group-chat-features
- Loading branch information
Showing
17 changed files
with
1,050 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
.errorContainer { | ||
min-height: 100vh; | ||
} | ||
|
||
.errorMessage { | ||
margin-top: 25%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
} | ||
|
||
.errorIcon { | ||
transform: scale(1.5); | ||
color: var(--bs-danger); | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.tableHeader { | ||
background-color: var(--bs-primary); | ||
color: var(--bs-white); | ||
font-size: 1rem; | ||
} | ||
|
||
.rowBackground { | ||
background-color: var(--bs-white); | ||
max-height: 120px; | ||
} | ||
|
||
.scrollContainer { | ||
max-height: 100px; /* Adjust as needed */ | ||
overflow-y: auto; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.memberBadge { | ||
display: flex; | ||
align-items: center; | ||
padding: 5px 10px; | ||
border-radius: 12px; | ||
background-color: #f8f9fa; /* Light background */ | ||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | ||
max-width: calc(100% - 30px); /* Ensure it fits within the container */ | ||
} | ||
|
||
.removeFilterIcon { | ||
cursor: pointer; | ||
} | ||
|
||
.scrollContainer { | ||
max-height: 350px; /* Set your desired max height */ | ||
overflow-y: auto; /* Enable vertical scrolling */ | ||
} | ||
|
||
/* SimpleLoader.css */ | ||
.simple-loader { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.spinner { | ||
width: 40px; | ||
height: 40px; | ||
border: 4px solid rgba(0, 0, 0, 0.1); | ||
border-top-color: #3498db; | ||
border-radius: 50%; | ||
animation: spin 0.6s linear infinite; | ||
} | ||
|
||
@keyframes spin { | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
} |
Oops, something went wrong.