Further UI Updates

This commit is contained in:
Patrick Fic
2021-03-29 17:08:52 -07:00
parent 17264ff7d6
commit 6c34b8839c
78 changed files with 1250 additions and 1024 deletions

View File

@@ -14,7 +14,7 @@ import Icon, {
UnorderedListOutlined,
UserOutlined,
} from "@ant-design/icons";
import { Menu } from "antd";
import { Layout, Menu } from "antd";
import React from "react";
import { useTranslation } from "react-i18next";
import { BsKanban } from "react-icons/bs";
@@ -67,10 +67,11 @@ function Header({
const { t } = useTranslation();
return (
<div style={{ display: "flex", alignContent: "center" }}>
<Layout.Header>
<Menu
mode="horizontal"
theme="light"
//theme="light"
theme={"dark"}
style={{ flex: 5 }}
selectedKeys={[selectedHeader]}
onClick={handleMenuClick}
@@ -351,7 +352,7 @@ function Header({
))}
</Menu.SubMenu>
</Menu>
</div>
</Layout.Header>
);
}