Cosmetic fixes to frontend hover states
This commit is contained in:
parent
e829131d62
commit
bfb30405df
@ -69,7 +69,7 @@ export default async function DayView({
|
|||||||
<Link
|
<Link
|
||||||
href={`/dashboard/day/${prevDay}`}
|
href={`/dashboard/day/${prevDay}`}
|
||||||
className={cn(
|
className={cn(
|
||||||
"flex-0 items-center rounded-[inherit] px-3 py-2",
|
"flex-0 items-center rounded-[inherit] px-3 py-2 text-gray-400 hover:text-primary/90",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div className="flex w-full justify-between">
|
<div className="flex w-full justify-between">
|
||||||
@ -85,7 +85,7 @@ export default async function DayView({
|
|||||||
<Link
|
<Link
|
||||||
href={`/dashboard/day/${nextDay}`}
|
href={`/dashboard/day/${nextDay}`}
|
||||||
className={cn(
|
className={cn(
|
||||||
"flex-0 items-center rounded-[inherit] px-3 py-2",
|
"flex-0 items-center rounded-[inherit] px-3 py-2 text-gray-400 hover:text-primary/90",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div className="flex w-full justify-between">
|
<div className="flex w-full justify-between">
|
||||||
|
|||||||
@ -133,7 +133,7 @@ export default function EditableHour({
|
|||||||
gridTemplateColumns: window.innerWidth > 640 ? "50px 100px 3fr 2fr" : "50px 100px 1fr", // Known issue: This won't work if the screen is resized, only on reload
|
gridTemplateColumns: window.innerWidth > 640 ? "50px 100px 3fr 2fr" : "50px 100px 1fr", // Known issue: This won't work if the screen is resized, only on reload
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<span className="text-right">
|
<span className="text-right hover:cursor-default">
|
||||||
{hourGroup.length > 1
|
{hourGroup.length > 1
|
||||||
? (
|
? (
|
||||||
<div className="flex flex-col items-center">
|
<div className="flex flex-col items-center">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user