File tree 1 file changed +9
-2
lines changed
src/sentry/static/sentry/app/views/settings/projectAlerts
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class RuleRow extends React.Component<Props, State> {
54
54
55
55
return (
56
56
< RuleItem >
57
- < div > { t ( 'Issue' ) } </ div >
57
+ < RuleType > { t ( 'Issue' ) } </ RuleType >
58
58
< div >
59
59
{ canEdit ? < RuleName to = { editLink } > { data . name } </ RuleName > : data . name }
60
60
< RuleDescription >
@@ -98,7 +98,7 @@ class RuleRow extends React.Component<Props, State> {
98
98
99
99
return (
100
100
< RuleItem >
101
- < div > { t ( 'Metric' ) } </ div >
101
+ < RuleType > { t ( 'Metric' ) } </ RuleType >
102
102
< div >
103
103
{ canEdit ? < RuleName to = { editLink } > { data . name } </ RuleName > : data . name }
104
104
< RuleDescription />
@@ -147,6 +147,13 @@ const RuleItem = styled(PanelItem)`
147
147
grid-auto-flow: column;
148
148
` ;
149
149
150
+ const RuleType = styled ( 'div' ) `
151
+ color: ${ p => p . theme . gray3 } ;
152
+ font-size: ${ p => p . theme . fontSizeSmall } ;
153
+ font-weight: bold;
154
+ text-transform: uppercase;
155
+ ` ;
156
+
150
157
const RuleName = styled ( Link ) `
151
158
font-weight: bold;
152
159
` ;
You can’t perform that action at this time.
0 commit comments