@@ -67,7 +67,7 @@ const getStyles = (theme: GrafanaTheme2) => ({
67
67
` ,
68
68
usageGrid : css `
69
69
display : grid;
70
- grid-template-columns : repeat (auto-fit, minmax (250 px , auto));
70
+ grid-template-columns : repeat (auto-fit, minmax (160 px , auto));
71
71
grid-gap : ${ theme . spacing ( 1 ) } ;
72
72
` ,
73
73
usageHeader : css `
@@ -167,14 +167,14 @@ const HomePage = () => {
167
167
</ DisplayCard >
168
168
</ div >
169
169
< DisplayCard className = { cx ( styles . card , styles . usageGrid , styles . marginBottom ) } >
170
- < h2 className = { styles . usageHeader } > Your Grafana Cloud synthetic monitoring usage</ h2 >
170
+ < h2 className = { styles . usageHeader } > Your Grafana Cloud Synthetic Monitoring usage</ h2 >
171
171
< BigValue
172
172
theme = { config . theme2 }
173
173
textMode = { BigValueTextMode . ValueAndName }
174
174
colorMode = { BigValueColorMode . Value }
175
175
graphMode = { BigValueGraphMode . Area }
176
- height = { 100 }
177
- width = { 150 }
176
+ height = { 80 }
177
+ width = { 75 }
178
178
value = { {
179
179
numeric : checks . length ,
180
180
color : config . theme2 . colors . text . primary ,
@@ -187,8 +187,8 @@ const HomePage = () => {
187
187
textMode = { BigValueTextMode . ValueAndName }
188
188
colorMode = { BigValueColorMode . Value }
189
189
graphMode = { BigValueGraphMode . Area }
190
- height = { 100 }
191
- width = { 150 }
190
+ height = { 80 }
191
+ width = { 115 }
192
192
value = { {
193
193
numeric : usage ?. activeSeries ?? 0 ,
194
194
color : config . theme2 . colors . text . primary ,
@@ -201,8 +201,8 @@ const HomePage = () => {
201
201
textMode = { BigValueTextMode . ValueAndName }
202
202
colorMode = { BigValueColorMode . Value }
203
203
graphMode = { BigValueGraphMode . Area }
204
- height = { 100 }
205
- width = { 225 }
204
+ height = { 80 }
205
+ width = { 175 }
206
206
value = { {
207
207
numeric : usage ?. checksPerMonth ?? 0 ,
208
208
color : config . theme2 . colors . text . primary ,
@@ -215,12 +215,12 @@ const HomePage = () => {
215
215
textMode = { BigValueTextMode . ValueAndName }
216
216
colorMode = { BigValueColorMode . Value }
217
217
graphMode = { BigValueGraphMode . Area }
218
- height = { 100 }
219
- width = { 200 }
218
+ height = { 80 }
219
+ width = { 150 }
220
220
value = { {
221
221
numeric : usage ?. logsGbPerMonth ?? 0 ,
222
222
color : config . theme2 . colors . text . primary ,
223
- title : 'Logs' ,
223
+ title : 'Logs per month ' ,
224
224
text : `${ usage ?. logsGbPerMonth . toFixed ( 2 ) ?? 0 } GB` ,
225
225
} }
226
226
/>
0 commit comments