diff --git a/src/cmps/AppHeader.jsx b/src/cmps/AppHeader.jsx index c547912..ff4b354 100644 --- a/src/cmps/AppHeader.jsx +++ b/src/cmps/AppHeader.jsx @@ -9,7 +9,7 @@ import NotificationsNoneIcon from "@mui/icons-material/NotificationsNone"; import { logout } from "../store/actions/user.actions"; export function AppHeader({ userData = null }) { - const iconStyle = {width: 16, height: 18}; + const iconStyle = {width: 22, height: 22}; const navigate = useNavigate(); function onLogOut() { @@ -23,13 +23,13 @@ export function AppHeader({ userData = null }) {
@@ -13,8 +13,10 @@ export function BoardDetailsHeader({ boardTitle }) {
- -
Main Table
+
+ +
Main Table
+

@@ -24,12 +26,12 @@ export function BoardDetailsHeader({ boardTitle }) {
New Item
- +
- - Search + + Search
diff --git a/src/cmps/MainInnerIndex.jsx b/src/cmps/MainInnerIndex.jsx index 2b31ac4..4e6ed0a 100644 --- a/src/cmps/MainInnerIndex.jsx +++ b/src/cmps/MainInnerIndex.jsx @@ -5,6 +5,8 @@ import { loadBoards } from "../store/actions/boards.actions.js"; import { addBoard, updateBoardName } from "../store/actions/boards.actions.js"; import { loadUsers, logout } from "../store/actions/user.actions.js"; import { BoardCard } from "./BoardCard.jsx"; +import ArrowDownIcon from "@mui/icons-material/KeyboardArrowDown"; + export function MainInnerIndex({ user, isBoard, boards }) { const navigate = useNavigate(); @@ -12,6 +14,8 @@ export function MainInnerIndex({ user, isBoard, boards }) { loadBoardsAndUsers() }, []); + const iconStyle = { width: 22, height: 22 }; + function loadBoardsAndUsers() { loadBoards() @@ -26,12 +30,16 @@ export function MainInnerIndex({ user, isBoard, boards }) { return !isBoard ? (
-

Hello {user.fullName}!

-

Quickly access your recent boards, Inbox and workspaces

+ Hello {user.fullName}! + Quickly access your recent boards, Inbox and workspaces
-
-

Recently viewed

- +
+
+
+
+ +

Recently visited

+
{boards.map((board) => ( diff --git a/src/cmps/SideBar.jsx b/src/cmps/SideBar.jsx index ca6aa8a..99567f2 100644 --- a/src/cmps/SideBar.jsx +++ b/src/cmps/SideBar.jsx @@ -22,7 +22,7 @@ export function SideBar({ boards, user, onRemoveBoard }) { addBoard(); } - const iconStyle = { width: 18, height: 16 }; + const iconStyle = { width: 22, height: 22 }; return (
{/* My Work Section */}
-

My Work

+

My Work


@@ -48,26 +48,27 @@ export function SideBar({ boards, user, onRemoveBoard }) { {/* Favorites Section */}
-

Favorites

+

Favorites


{/* Workspaces Section */} -
+
+
-

Workspaces

-
- -
+

Workspaces

+
+

Main Workspace

+
{/* Board List */}