Update settings button style
This commit is contained in:
@@ -9,10 +9,10 @@ interface Props {
|
||||
export const SidebarButton: FC<Props> = ({ text, icon, onClick }) => {
|
||||
return (
|
||||
<div
|
||||
className="flex hover:bg-[#343541] py-2 px-4 rounded-md cursor-pointer w-[200px] items-center"
|
||||
className="flex hover:bg-[#343541] py-2 px-2 rounded-md cursor-pointer w-full items-center"
|
||||
onClick={onClick}
|
||||
>
|
||||
<div className="mr-3">{icon}</div>
|
||||
<div className="mr-2">{icon}</div>
|
||||
<div>{text}</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user