commit 40eb2ab34a954e3f43b0abedc66425bf32e40cb8 parent f1d0c4d41f45bfbb13e83b48d670592631d29baa Author: MTRNord <mtrnord1@gmail.com> Date: Thu, 3 Mar 2022 17:25:03 +0100 Add width 100% to tables Diffstat:
| M | src/components/Banlist.tsx | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/Banlist.tsx b/src/components/Banlist.tsx @@ -91,7 +91,7 @@ class BanList extends PureComponent<Props, State> { <div className='flex flex-row justify-between content-between w-full'> <section className='mr-2'> <h3 className="text-2xl font-bold text-gray-900 dark:text-gray-200 mb-2">User Bans ({user_rules.length})</h3> - <table className='table-auto border-collapse border-2 border-slate-500 text-gray-900 dark:text-gray-200 text-base font-normal break-words'> + <table className='table-auto border-collapse border-2 border-slate-500 text-gray-900 dark:text-gray-200 text-base font-normal break-words w-full'> <thead> <tr> <th className='border-2 border-slate-600 p-1'>Entity</th> @@ -129,7 +129,7 @@ class BanList extends PureComponent<Props, State> { </section> <section> <h3 className="text-2xl font-bold text-gray-900 dark:text-gray-200 mb-2">Server Bans ({server_rules.length})</h3> - <table className='table-auto border-collapse border-2 border-slate-500 text-gray-900 dark:text-gray-200 text-base font-normal break-words'> + <table className='table-auto border-collapse border-2 border-slate-500 text-gray-900 dark:text-gray-200 text-base font-normal break-words w-full'> <thead> <tr> <th className='border-2 border-slate-600 p-2'>Entity</th>