Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

White Arrows in Dark Mode & Tabs color #112

Merged
merged 1 commit into from
Feb 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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