Merge remote-tracking branch 'origin/mp/hark/qa-11-11' into lf/hark-qa-fixes

This commit is contained in:
Liam Fitzgerald 2020-11-12 10:46:29 +10:00
commit 5d8d84a7f4
No known key found for this signature in database
GPG Key ID: D390E12C61D1CFFB
2 changed files with 4 additions and 4 deletions

View File

@ -51,8 +51,8 @@ function describeNotification(description: string, plural: boolean) {
}
const GraphUrl = ({ url, title }) => (
<Box borderRadius="1" p="2" bg="washedGray">
<Anchor target="_blank" color="gray" href={url}>
<Box borderRadius="2" p="2" bg="scales.black05">
<Anchor underline={false} target="_blank" color="black" href={url}>
<Icon verticalAlign="bottom" mr="2" icon="ArrowExternal" />
{title}
</Anchor>

View File

@ -87,9 +87,9 @@ function NotificationWrapper(props: {
const changeMuteDesc = isMuted ? "Unmute" : "Mute";
return (
<Row alignItems="center" justifyContent="space-between">
<Row alignItems="top" justifyContent="space-between">
{children}
<Row gapX="2" p="2" alignItems="center">
<Row gapX="2" p="2" pt='3' alignItems="top">
<StatelessAsyncAction name={changeMuteDesc} onClick={onChangeMute} backgroundColor="transparent">
{changeMuteDesc}
</StatelessAsyncAction>