From 88e1e8380038e7aefba8d2c1c9b52bdf7290ee42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sat, 23 Feb 2019 15:02:25 +0100 Subject: [PATCH] style tweaks --- packages/grafana-ui/src/components/BarGauge/BarGauge.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/BarGauge/BarGauge.tsx b/packages/grafana-ui/src/components/BarGauge/BarGauge.tsx index adec77c3170..4b1c9e75e7a 100644 --- a/packages/grafana-ui/src/components/BarGauge/BarGauge.tsx +++ b/packages/grafana-ui/src/components/BarGauge/BarGauge.tsx @@ -81,7 +81,7 @@ export class BarGauge extends PureComponent { .toRgbString(); } else { return tinycolor(color) - .setAlpha(0.65) + .setAlpha(0.7) .toRgbString(); } } @@ -197,6 +197,7 @@ export class BarGauge extends PureComponent { backgroundColor: cellColor, marginRight: '4px', height: `${height}px`, + borderRadius: '2px', }; cells.push(
);