From 8438716bf511008721b740d791331ce85cfa4ebf Mon Sep 17 00:00:00 2001 From: ismail simsek Date: Sun, 19 Mar 2023 20:59:51 +0100 Subject: [PATCH] Use standard border-radius as 2px (#64534) --- .../graphite/components/MetricTankMetaInspector.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/app/plugins/datasource/graphite/components/MetricTankMetaInspector.tsx b/public/app/plugins/datasource/graphite/components/MetricTankMetaInspector.tsx index bb48052c2b2..d0fd82f1e53 100644 --- a/public/app/plugins/datasource/graphite/components/MetricTankMetaInspector.tsx +++ b/public/app/plugins/datasource/graphite/components/MetricTankMetaInspector.tsx @@ -6,8 +6,8 @@ import { stylesFactory } from '@grafana/ui'; import { config } from 'app/core/config'; import { GraphiteDatasource } from '../datasource'; -import { parseSchemaRetentions, getRollupNotice, getRuntimeConsolidationNotice } from '../meta'; -import { GraphiteQuery, GraphiteOptions, MetricTankSeriesMeta } from '../types'; +import { getRollupNotice, getRuntimeConsolidationNotice, parseSchemaRetentions } from '../meta'; +import { GraphiteOptions, GraphiteQuery, MetricTankSeriesMeta } from '../types'; export type Props = MetadataInspectorProps; @@ -163,7 +163,7 @@ const getStyles = stylesFactory(() => { bucket: css` display: flex; margin-bottom: ${theme.spacing.sm}; - border-radius: ${theme.border.radius.md}; + border-radius: ${theme.border.radius.sm}; `, bucketInterval: css` flex-grow: 0; @@ -174,7 +174,7 @@ const getStyles = stylesFactory(() => { text-align: center; color: ${theme.palette.white}; margin-right: ${theme.spacing.md}; - border-radius: ${theme.border.radius.md}; + border-radius: ${theme.border.radius.sm}; `, bucketRetentionActive: css` background: linear-gradient(0deg, ${theme.palette.greenBase}, ${theme.palette.greenShade});