Skip to content

Commit

Permalink
fix: dark mode issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tareq1988 committed Feb 20, 2024
1 parent 7ef094b commit e5bd9b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/js/Layouts/FrontendLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const FrontendLayout = ({ children }: PropsWithChildren) => {
<span className="inline-flex rounded-md">
<button
type="button"
className="inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 dark:text-gray-400 bg-white dark:bg-gray-800 hover:text-gray-700 dark:hover:text-gray-300 focus:outline-none transition ease-in-out duration-150"
className="inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white hover:text-gray-700 focus:outline-none transition ease-in-out duration-150"
>
{auth.user.name}

Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Frontend/Partials/HomeBoardList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const HomeBoardList = ({ boards }: Props) => {
<div key={board.id}>
<Link
href={route('board.show', board.slug)}
className="flex py-3 px-4 justify-between items-center font-semibold text-gray-900 border rounded-md bg-white dark:bg-gray-700 dark:hover:bg-gray-600 hover:bg-gray-100"
className="flex py-3 px-4 justify-between items-center font-semibold text-gray-900 border rounded-md bg-white hover:bg-gray-100"
>
<div className="text-sm">{board.name}</div>
<div className="text-xs">{board.posts}</div>
Expand Down

0 comments on commit e5bd9b9

Please sign in to comment.