Chore: Use theme.shape.radius.circle everywhere (#70896)

* use theme.shape.radius.circle everywhere

* add useTheme2 import
This commit is contained in:
Ashley Harrison
2023-06-29 13:56:05 +01:00
committed by GitHub
parent 890316c105
commit 9ee2cc742a
17 changed files with 19 additions and 18 deletions

View File

@@ -28,7 +28,7 @@ const getStyles = (theme: GrafanaTheme2) => {
const common: CSSObject = {
width: 8,
height: 8,
borderRadius: '50%',
borderRadius: theme.shape.radius.circle,
marginLeft: theme.spacing(1),
position: 'relative',
top: '-1px',

View File

@@ -40,7 +40,7 @@ function getStyles(theme: GrafanaTheme2) {
height: 10px;
background: ${theme.colors.text.disabled};
box-shadow: 0 0 2px ${theme.colors.text.disabled};
border-radius: 50%;
border-radius: ${theme.shape.radius.circle};
position: relative;
top: 6px;
right: 1px;