Table: Fixes color for data links (#36446)

* Table: add styling for anchor tag

* inherit color from parent to anchor tag

Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
This commit is contained in:
Tharun Rajendran 2021-07-07 11:16:38 +05:30 committed by GitHub
parent e60950a8c7
commit 97dca963a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,6 +43,9 @@ export const getTableStyles = (theme: GrafanaTheme2) => {
display: inline-flex;
}
}
a {
color: inherit;
}
`;
};