Skip to content

Commit

Permalink
Merge branch 'master' into fix/2920
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron committed Mar 11, 2024
2 parents 9e85fc2 + 2d826a4 commit daf2e19
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
},
"typescript.preferences.importModuleSpecifier": "non-relative",
"editor.defaultFormatter": "esbenp.prettier-vscode"
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/IconLinkCard/IconLinkCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function IconLinkCard({
}: IconLinkCardProps) {
return (
<div
className="border border-gray-300 dark:border-neutral-800 rounded-xl p-4 bg-white dark:bg-surface-01dp hover:bg-gray-50 dark:hover:bg-surface-02dp text-gray-800 dark:text-neutral-200 cursor-pointer flex flex-row items-center gap-3"
className="border border-gray-200 dark:border-neutral-800 rounded-xl p-4 bg-white dark:bg-surface-01dp hover:bg-gray-50 dark:hover:bg-surface-02dp text-gray-800 dark:text-neutral-200 cursor-pointer flex flex-row items-center gap-3"
onClick={onClick}
>
<div className="flex-shrink-0 flex justify-center md:px-3">{icon}</div>
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/Navbar/NavbarLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ function NavbarLink({ children, end = false, href, target }: Props) {
classNames(
"flex items-center font-semibold hover:text-gray-600 dark:hover:text-neutral-400 transition px-1 text-md",
isActive
? " text-gray-800 dark:text-neutral-200"
: " text-gray-400 dark:text-gray-600"
? "text-gray-800 dark:text-neutral-200"
: "text-gray-400 dark:text-neutral-600"
)
}
>
Expand Down
2 changes: 1 addition & 1 deletion src/app/screens/Home/DefaultView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ const HomeButton = ({
onClick: () => void;
}) => (
<button
className="bg-white dark:bg-surface-01dp hover:bg-amber-50 dark:hover:bg-surface-02dp text-gray-800 dark:text-neutral-200 rounded-xl border border-gray-300 dark:border-neutral-800 hover:border-primary dark:hover:border-primary flex flex-col flex-1 justify-center items-center pt-[18px] pb-3 px-[14px] text-xs font-medium gap-2"
className="bg-white dark:bg-surface-01dp hover:bg-amber-50 dark:hover:bg-surface-02dp text-gray-800 dark:text-neutral-200 rounded-xl border border-gray-200 dark:border-neutral-800 hover:border-primary dark:hover:border-primary flex flex-col flex-1 justify-center items-center pt-[18px] pb-3 px-[14px] text-xs font-medium gap-2"
onClick={onClick}
>
{icon}
Expand Down

0 comments on commit daf2e19

Please sign in to comment.