Skip to content

Commit 41dd11c

Browse files
committed
fix: correct StatusBanner custom selectors
1 parent df464f8 commit 41dd11c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

web/src/layout/Header/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Header: React.FC = () => {
1111
return (
1212
<div className="flex flex-wrap sticky z-10 top-0 w-full bg-klerosUIComponentsPrimaryPurple dark:bg-light-blue-65 backdrop-blur-none dark:backdrop-blur-md">
1313
<StatusBanner
14-
className="sticky! [&_.status-text_h2]:m-0 [&_.status-text_h2]:leading-6"
14+
className="sticky! [&_.status-text_h2]:m-[0] [&_.status-text_h2]:leading-[24px]"
1515
autoHide
1616
watcherOptions={{ threshold: 5000, interval: 60_000 }} // 5000 blocks threshold, 60 sec interval check
1717
theme={{

web/src/layout/Header/navbar/Menu/Help.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ const Help: React.FC<IHelp> = ({ toggleIsHelpOpen }) => {
6060
href={item.url}
6161
key={item.text}
6262
target="_blank"
63+
rel="noopener noreferrer"
6364
className="flex gap-2 py-3 px-2 cursor-pointer transition-transform duration-200 hover:scale-[1.02]"
6465
>
6566
<item.Icon className="inline-block w-4 h-4 fill-klerosUIComponentsSecondaryPurple" />

0 commit comments

Comments
 (0)