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
href="https://redux-toolkit.js.org/rtk-query/overview#basic-usage"
target="_blank"
rel="noreferrer"
rel="noreferrer noopener"
>
the instructions
</a>

View File

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