fix popper header (#233)

This commit is contained in:
Ilya Y 2023-09-26 16:24:59 +03:00 committed by GitHub
parent b204f5dbba
commit 4e7e6b692a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -205,7 +205,7 @@ export const Header = (props: Props) => {
onMouseOver={() => toggleSubnavigation(true, setIsTopicsVisible)} onMouseOver={() => toggleSubnavigation(true, setIsTopicsVisible)}
onMouseOut={() => hideSubnavigation} onMouseOut={() => hideSubnavigation}
routeName="topics" routeName="topics"
active={isFeedVisible()} active={isTopicsVisible()}
body={t('topics')} body={t('topics')}
/> />
<Link <Link

View File

@ -980,6 +980,7 @@ details {
iframe { iframe {
border: none; border: none;
color: rgba(255, 255, 255, 0);
} }
.lead { .lead {
@ -990,4 +991,5 @@ iframe {
.cursorPointer { .cursorPointer {
cursor: pointer; cursor: pointer;
color: rgba(255, 255, 255, 0);
} }