diff --git a/pages/teams/demo.tsx b/pages/teams/demo.tsx index eee1ed4..f0b59fc 100644 --- a/pages/teams/demo.tsx +++ b/pages/teams/demo.tsx @@ -16,7 +16,8 @@ import { BsThreeDots } from "react-icons/bs"; import { UserStatus, User } from '../../models/user' import { KeyCode } from '../../globals/keycode' -import { Tabs } from "antd"; +import { Tabs } from 'antd'; +const { TabPane } = Tabs; let testFriends = [ { @@ -261,14 +262,71 @@ export default class Demo extends React.Component { {/* rooms */}
- + ROOMS - + + + All + + } + key="1" + > + + + Live + + } + className='text-white' + key="2" + > + + + Scheduled + + } + className='text-white' + key="3" + > + + + Recurring + + } + className='text-white' + key="4" + > + + tetasedtg + + + + Archive + + } + className='text-white' + key="5" + > + + + + + TODAY + + Create + diff --git a/styles/globals.css b/styles/globals.css index 6296fcc..aa9d59a 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -89,3 +89,19 @@ p { @tailwind base; @tailwind components; @tailwind utilities; + +.ant-tabs-nav { + @apply m-0 !important; +} +.ant-tabs-tab { + @apply text-gray-300 pb-3 pt-1 !important; +} +.ant-tabs-tab-btn { + @apply text-gray-300 !important; +} +.ant-tabs-tab-active { + @apply text-gray-300 !important; +} +.ant-tabs-ink-bar { + @apply text-white bg-white !important; +}