fix: responsive of page example in storybook (#3005)

* fix the responsive of page stories in story book

* fix the typo in Example header of Page stories

* add changeset
This commit is contained in:
Abhishek Jakhar
2020-10-21 11:33:00 +05:30
committed by GitHub
parent aca79334f4
commit 1611c6dbc2
2 changed files with 8 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core': patch
---
fix the responsive of page story
@@ -118,14 +118,14 @@ const DataGrid = () => (
justify="space-between"
direction="row"
>
<Grid item xs={6}>
<Grid item xs={12} md={6}>
<GaugeCard
title="GKE Usage Score"
subheader="This should be above 75%"
progress={0.87}
/>
</Grid>
<Grid item xs={6}>
<Grid item xs={12} md={6}>
<GaugeCard
title="Deployment Score"
subheader="This should be above 40%"
@@ -174,7 +174,7 @@ const DataGrid = () => (
);
const ExampleHeader = () => (
<Header title="Example" subtitle="This an example plugin">
<Header title="Example" subtitle="This is an example plugin">
<HeaderLabel label="Owner" value="Owner" />
<HeaderLabel label="Lifecycle" value="Lifecycle" />
</Header>