mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Added margin right to space out previously squashed labels and values (#46284)
This commit is contained in:
parent
c649b54ed2
commit
ecf84be65a
@ -48,6 +48,10 @@ const getStyles = (divider: boolean) => (theme: GrafanaTheme2) => {
|
||||
color: ${theme.isLight ? '#999' : '#666'};
|
||||
margin-right: 0.25rem;
|
||||
`,
|
||||
LabeledListValue: css`
|
||||
label: LabeledListValue;
|
||||
margin-right: 0.55rem;
|
||||
`,
|
||||
};
|
||||
};
|
||||
|
||||
@ -67,7 +71,7 @@ export default function LabeledList(props: LabeledListProps) {
|
||||
return (
|
||||
<li className={styles.LabeledListItem} key={`${key}`}>
|
||||
<span className={styles.LabeledListLabel}>{label}</span>
|
||||
<strong>{value}</strong>
|
||||
<strong className={styles.LabeledListValue}>{value}</strong>
|
||||
</li>
|
||||
);
|
||||
})}
|
||||
|
Loading…
Reference in New Issue
Block a user