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 07:46:38 +02:00
committed by GitHub
co-authored by Torkel Ödegaard
parent e60950a8c7
commit 97dca963a9
@@ -43,6 +43,9 @@ export const getTableStyles = (theme: GrafanaTheme2) => {
display: inline-flex;
}
}
a {
color: inherit;
}
`;
};