diff --git a/public/app/features/plugins/admin/components/PluginDetailsBody.tsx b/public/app/features/plugins/admin/components/PluginDetailsBody.tsx index ecd4a44c7c8..58d503472af 100644 --- a/public/app/features/plugins/admin/components/PluginDetailsBody.tsx +++ b/public/app/features/plugins/admin/components/PluginDetailsBody.tsx @@ -119,5 +119,23 @@ export const getStyles = (theme: GrafanaTheme2) => ({ text-decoration: underline; } } + + table { + table-layout: fixed; + width: 100%; + + td, + th { + overflow-x: auto; + padding: ${theme.spacing(0.5)} ${theme.spacing(1)}; + } + + table, + th, + td { + border: 1px solid ${theme.colors.border.medium}; + border-collapse: collapse; + } + } `, });