Skip to content

Commit

Permalink
White Arrows in Dark Mode & Tabs color (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shriansh2002 committed Feb 28, 2023
1 parent 12e7947 commit b2a5d9a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions components/templates/JSON_Template.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const JSON_Template = () => {
<div className="flex align-middle justify-between ">
<div className="flex align-middle items-center gap-2 ">
<Link href="/templates">
<ArrowLeftIcon className="h-5 cursor-pointer" />
<ArrowLeftIcon className="h-5 cursor-pointer dark:text-white" />
</Link>

{/* <h1 className="text-2xl font-bold text-gray-500">
Expand Down Expand Up @@ -231,8 +231,8 @@ const JSON_Template = () => {
classNames(
'w-full relative rounded-lg py-2.5 text-sm font-medium leading-5',
selected
? 'bg-white shadow dark:bg-gray-900'
: 'text-black hover:bg-white/[0.12] hover:text-white dark:hover:bg-gray-900/50'
? 'bg-white shadow dark:bg-gray-900 dark:text-white'
: 'text-black hover:bg-white/[0.12] hover:text-white dark:hover:bg-gray-900/50'
)
}
>
Expand All @@ -248,7 +248,7 @@ const JSON_Template = () => {
classNames(
'w-full rounded-lg py-2.5 text-sm font-medium leading-5',
selected
? 'bg-white shadow dark:bg-gray-900'
? 'bg-white shadow dark:bg-gray-900 dark:text-white'
: 'text-black hover:bg-white/[0.12] hover:text-white dark:hover:bg-gray-900/50'
)
}
Expand Down
2 changes: 1 addition & 1 deletion components/templates/TemplateConfig/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const AdminComponent = ({ templateId, type }) => {
<div className="flex align-middle justify-between ">
<div className="flex align-middle items-center gap-2 ">
<Link href="/templates">
<ArrowLeftIcon className="h-5 cursor-pointer" />
<ArrowLeftIcon className="h-5 cursor-pointer dark:text-white" />
</Link>

<h1 className="text-2xl font-bold text-gray-500 dark:text-gray-200">
Expand Down
2 changes: 1 addition & 1 deletion pages/templatecreate/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const Templates = () => {
<div className="flex align-middle justify-between ">
<div className="flex align-middle items-center gap-2 ">
<Link href="/templates">
<ArrowLeftIcon className="h-5 cursor-pointer" />
<ArrowLeftIcon className="h-5 cursor-pointer dark:text-white" />
</Link>

{/* <h1 className="text-2xl font-bold text-gray-500">
Expand Down

0 comments on commit b2a5d9a

Please sign in to comment.