Skip to content

Commit

Permalink
feat: assets added
Browse files Browse the repository at this point in the history
  • Loading branch information
ammarrqureshi committed Jan 17, 2024
1 parent c7ce58a commit e303087
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/UI/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const Button = ({ children, Type, className, ...rest }: ButtonType) => {
<button
className={`${className} border-slate-600 ${
Type === "icon"
? `p-1 hover:bg-orange-700 rounded-lg max-sm:p-0`
? `p-1 hover:bg-orange-600 rounded-lg max-sm:p-0`
: `px-4 py-2 rounded-full ${getType()} bg-${getType()}-600 hover:bg-${getType()}-500`
} flex gap-2 justify-center items-center drop-shadow-xl disabled:bg-gray-800 disabled:text-gray-900`}
{...rest}
Expand Down
2 changes: 1 addition & 1 deletion src/components/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Sidebar = () => {
+ Add Task
</Button>
<Button
className="text-orange-500 hover:text-slate-300"
className="text-orange-600 hover:text-slate-300"
Type=""
type="button"
onClick={() => setIsEditing(true)}
Expand Down

0 comments on commit e303087

Please sign in to comment.