File tree Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Socials from "./Socials";
3
3
4
4
function Menu ( ) {
5
5
return (
6
- < div className = "w-52 h-56 bg-green-500 absolute left-52 top-8 rounded-lg shadow-xl" >
6
+ < div className = "w-52 h-56 rounded-xl bg-gradient-to-r from-slate-900 to-slate-700 absolute left-52 top-8 rounded-lg shadow-xl" >
7
7
< MenuItem feat = "Start Collaboration" > </ MenuItem >
8
8
< MenuItem feat = "Start Chat" > </ MenuItem >
9
9
< MenuItem feat = "Save as pdf" > </ MenuItem >
Original file line number Diff line number Diff line change 1
1
/* eslint-disable react/prop-types */
2
2
function MenuItem ( props ) {
3
- return (
4
- < div >
5
- < h1 > { props . feat } </ h1 >
6
- </ div >
7
- )
3
+ return (
4
+ < div className = "h-11 w-15 border-b border-dotted cursor-pointer content-center" >
5
+ < h1 className = "font-sans text-white justify-center flex" >
6
+ { props . feat }
7
+ </ h1 >
8
+ </ div >
9
+ ) ;
8
10
}
9
11
10
12
export default MenuItem ;
Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ import LoginAndLogout from "./LoginAndLogout";
5
5
6
6
function Sidebar ( props ) {
7
7
return (
8
- < div className = "flex flex-col w-64 bg-zinc-800 relative" ref = { props . ref } >
8
+ < div
9
+ className = "flex flex-col w-64 bg-gradient-to-r from-slate-900 to-slate-700 relative"
10
+ ref = { props . ref }
11
+ >
9
12
< Header toggleMenu = { props . toggleMenu } > </ Header >
10
13
< Toolbar clearOnClick = { props . clearOnClick } id = { props . id } > </ Toolbar >
11
14
< LoginAndLogout > </ LoginAndLogout >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ function Socials(){
15
15
</ h1 >
16
16
< img
17
17
src = { Xlogo }
18
- className = "h-6 w-6 rounded cursor-pointer"
18
+ className = "h-5 w-5 rounded cursor-pointer"
19
19
onClick = { clickHandler }
20
20
> </ img >
21
21
</ div >
You can’t perform that action at this time.
0 commit comments