From 617a13f2117401b461ffe790ea47597362c5c9cb Mon Sep 17 00:00:00 2001 From: Corwin Smith Date: Thu, 6 Oct 2022 23:48:24 -0600 Subject: [PATCH] working on table --- .../UI/downloads/DownloadsTable.tsx | 101 +++++++++++++++++- 1 file changed, 100 insertions(+), 1 deletion(-) diff --git a/src/components/UI/downloads/DownloadsTable.tsx b/src/components/UI/downloads/DownloadsTable.tsx index 83ae1ba097..d621574e15 100644 --- a/src/components/UI/downloads/DownloadsTable.tsx +++ b/src/components/UI/downloads/DownloadsTable.tsx @@ -3,7 +3,16 @@ import { Tabs, TabList, Tab, + Table, + Tbody, + Thead, + Tr, + Th, + Td, + TableContainer, Text, + TabPanel, + TabPanels, } from '@chakra-ui/react'; export const DownloadsTable = () => { @@ -22,6 +31,7 @@ export const DownloadsTable = () => { bg: '#11866f', color: '#f0f2e2', }} + borderRight='2px solid #11866f' > { fontWeight={700} textTransform='uppercase' textAlign='center' + fontSize='sm' > LINUX @@ -40,6 +51,7 @@ export const DownloadsTable = () => { bg: '#11866f', color: '#f0f2e2', }} + borderRight='2px solid #11866f' > { fontWeight={700} textTransform='uppercase' textAlign='center' + fontSize='sm' > MACOS @@ -58,6 +71,7 @@ export const DownloadsTable = () => { bg: '#11866f', color: '#f0f2e2', }} + borderRight='2px solid #11866f' > { fontWeight={700} textTransform='uppercase' textAlign='center' + fontSize='sm' > WINDOWS @@ -76,6 +91,7 @@ export const DownloadsTable = () => { bg: '#11866f', color: '#f0f2e2', }} + borderRight='2px solid #11866f' > { fontWeight={700} textTransform='uppercase' textAlign='center' + fontSize='sm' > IOS @@ -101,13 +118,95 @@ export const DownloadsTable = () => { fontWeight={700} textTransform='uppercase' textAlign='center' + fontSize='sm' > ANDROID + + + + + + + + + + + + + +
+ + Release + + + + Commit + + + + Kind + + + + Arch + + + + Size + +
+
+
+
- Test ) } \ No newline at end of file