Skip to content

Commit dcf4f07

Browse files
committedOct 31, 2024
Merge branch 'preview'
2 parents 0e67c38 + 7a951cc commit dcf4f07

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed
 

‎src/components/contentDisplay/notification/NotificationItem.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const NotificationItem = memo(function NotificationItem(props: Props) {
108108
} else {
109109
return (
110110
<div
111-
className={`border-skin-base flex flex-col justify-between border border-x-0 p-3 first:border-t last:border-b md:border-x odd:[&:not(:last-child)]:border-b-0 even:[&:not(:last-child)]:border-b-0 ${
111+
className={`border-skin-base flex flex-col justify-between border border-x-0 first:border-t last:border-b md:border-x odd:[&:not(:last-child)]:border-b-0 even:[&:not(:last-child)]:border-b-0 ${
112112
!isRead && "bg-skin-tertiary"
113113
}`}
114114
>

‎src/components/navigational/topBar/TopBar.tsx

+15-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,21 @@ export default function TopBar(props: Props) {
2929
onClick={() => window.scrollTo({ top: 0, behavior: "smooth" })}
3030
className="inline"
3131
>
32-
<Image src="/logo.svg" alt="Ouranos logo" width={100} height={100} />
32+
<div className="flex items-center gap-2 group">
33+
<Image
34+
src="/ouranos.svg"
35+
alt="Ouranos logo"
36+
width={30}
37+
height={30}
38+
className="block transition-transform duration-700 ease-in-out group-hover:rotate-180"
39+
/>
40+
<Image
41+
src="/ouranosText.svg"
42+
alt="Ouranos text"
43+
width={60}
44+
height={20}
45+
/>
46+
</div>{" "}
3347
</Button>
3448
<Link href="/dashboard/settings">
3549
<BiCog className="text-skin-icon-muted hover:text-skin-icon-base text-2xl md:text-3xl" />

0 commit comments

Comments
 (0)