Browse Source

style tweaks

Torkel Ödegaard 7 years ago
parent
commit
88e1e83800
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/grafana-ui/src/components/BarGauge/BarGauge.tsx

+ 2 - 1
packages/grafana-ui/src/components/BarGauge/BarGauge.tsx

@@ -81,7 +81,7 @@ export class BarGauge extends PureComponent<Props> {
           .toRgbString();
       } else {
         return tinycolor(color)
-          .setAlpha(0.65)
+          .setAlpha(0.7)
           .toRgbString();
       }
     }
@@ -197,6 +197,7 @@ export class BarGauge extends PureComponent<Props> {
         backgroundColor: cellColor,
         marginRight: '4px',
         height: `${height}px`,
+        borderRadius: '2px',
       };
 
       cells.push(<div style={cellStyles} />);