Table: Fixes so border is visible for cells with links (#33160)

This commit is contained in:
Hugo Häggmark 2021-04-20 15:06:29 +02:00 committed by GitHub
parent 72db1bb2e9
commit 888667abbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ export const getTableStyles = stylesFactory((theme: GrafanaTheme) => {
${color ? `color: ${color};` : ''};
${background ? `background: ${background};` : ''};
&:last-child {
&:last-child:not(:only-child) {
border-right: none;
padding-right: ${lastChildExtraPadding}px;
}