mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
Merge pull request #373 from Benjamin-Frost/fix/350-long-email-invite
Fix Long User Input Leads To Overflow
This commit is contained in:
commit
de10fb4969
2 changed files with 105 additions and 103 deletions
|
|
@ -55,6 +55,7 @@ function OrgUserGroups() {
|
|||
UserGroups are a way to group users together to manage their access to the resources (Courses) in your organization.{' '}
|
||||
</h2>
|
||||
</div>
|
||||
<div className="overflow-x-auto">
|
||||
<table className="table-auto w-full text-left whitespace-nowrap rounded-md overflow-hidden">
|
||||
<thead className="bg-gray-100 text-gray-500 rounded-xl uppercase">
|
||||
<tr className="font-bolder text-sm">
|
||||
|
|
@ -137,6 +138,7 @@ function OrgUserGroups() {
|
|||
</tbody>
|
||||
</>
|
||||
</table>
|
||||
</div>
|
||||
<div className='flex justify-end mt-3 mr-2'>
|
||||
<Modal
|
||||
isDialogOpen={
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ function OrgUsersAdd() {
|
|||
Users who have been invited to join your organization{' '}
|
||||
</h2>
|
||||
</div>
|
||||
<div className="overflow-x-auto">
|
||||
<table className="table-auto w-full text-left whitespace-nowrap rounded-md overflow-hidden">
|
||||
<thead className="bg-gray-100 text-gray-500 rounded-xl uppercase">
|
||||
<tr className="font-bolder text-sm">
|
||||
|
|
@ -127,8 +128,7 @@ function OrgUsersAdd() {
|
|||
</tbody>
|
||||
</>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
) : (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue