File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import { Logo } from "@lib-theme";
14
14
import useSidebarClasses from "@app-ui/layout/partials/Sidebar/styles" ;
15
15
16
16
type TProps = {
17
- defaultTab : "overview" | "browse" | "contribute" ;
17
+ defaultTab : "overview" | "browse" ;
18
18
isExpanded : boolean ;
19
19
toggleExpandAction : ( ) => void ;
20
20
overviewTabAction : ( ) => void ;
@@ -83,7 +83,7 @@ export default function Sidebar({
83
83
< Button
84
84
className = { classes . buttonOverride }
85
85
icon = { isExpanded ? < ChevronLeftFilled /> : < ChevronRightFilled /> }
86
- appearance = "subtle "
86
+ appearance = "secondary "
87
87
size = "small"
88
88
onClick = { toggleExpandAction }
89
89
/>
Original file line number Diff line number Diff line change @@ -5,7 +5,11 @@ const useSidebarClasses = makeStyles({
5
5
backgroundColor : tokens . colorNeutralBackground1 ,
6
6
borderRadius : tokens . borderRadiusLarge ,
7
7
} ,
8
- buttonOverride : { } ,
8
+ buttonOverride : {
9
+ borderTopRightRadius : 0 ,
10
+ borderBottomLeftRadius : 0 ,
11
+ // border: "none",
12
+ } ,
9
13
} ) ;
10
14
11
15
export default useSidebarClasses ;
You can’t perform that action at this time.
0 commit comments