Annotation tooltip: Bring back links styles (#38780)

This commit is contained in:
Dominik Prokop 2021-09-01 13:30:30 +02:00 committed by GitHub
parent 55e20bbf04
commit 326455a9b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,6 +130,13 @@ const getStyles = (theme: GrafanaTheme2) => {
`,
body: css`
padding: ${theme.spacing(1)};
a {
color: ${theme.colors.text.link};
&:hover {
text-decoration: underline;
}
}
`,
};
};