fix(rtk-query): incorrect link color

Other changes:

* fix: add missing anchor property value noopener
This commit is contained in:
FaberVitale 2021-06-21 17:05:30 +02:00
parent e84c0dcd99
commit e5ce000a27
2 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,7 @@ export function NoRtkQueryApi(): JSX.Element {
<a <a
href="https://redux-toolkit.js.org/rtk-query/overview#basic-usage" href="https://redux-toolkit.js.org/rtk-query/overview#basic-usage"
target="_blank" target="_blank"
rel="noreferrer" rel="noreferrer noopener"
> >
the instructions the instructions
</a> </a>

View File

@ -293,9 +293,11 @@ const getSheetFromColorMap = (map: ColorMap) => {
noApiFound: { noApiFound: {
width: '100%', width: '100%',
textAlign: 'center', textAlign: 'center',
color: map.TEXT_COLOR,
padding: '1.4em', padding: '1.4em',
'& a': { '& a': {
fontSize: 'inherit', fontSize: 'inherit',
color: map.TEXT_COLOR,
textDecoration: 'underline', textDecoration: 'underline',
}, },
}, },