Fix notifications page error in Tor browser (#37285)

This commit is contained in:
diondiondion 2025-12-17 15:38:46 +01:00 committed by GitHub
parent d6a40c2891
commit 71af094f97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,3 @@
.inlineIcon {
vertical-align: middle;
}

View File

@ -12,6 +12,8 @@ import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
import { Button } from '../button'; import { Button } from '../button';
import { Icon } from '../icon'; import { Icon } from '../icon';
import classes from './remove_quote_hint.module.css';
const DISMISSIBLE_BANNER_ID = 'notifications/remove_quote_hint'; const DISMISSIBLE_BANNER_ID = 'notifications/remove_quote_hint';
/** /**
@ -92,7 +94,7 @@ export const RemoveQuoteHint: React.FC<{
id: 'status.more', id: 'status.more',
defaultMessage: 'More', defaultMessage: 'More',
})} })}
style={{ verticalAlign: 'middle' }} className={classes.inlineIcon}
/> />
), ),
}} }}