Fix review comments

Signed-off-by: Yevhenii Huselietov <yevhenii.huselietov@gmail.com>
This commit is contained in:
Yevhenii Huselietov
2023-10-11 13:25:44 +03:00
parent 61d55942ae
commit 49261142a8
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
---
'@backstage/plugin-newrelic-dashboard': minor
'@backstage/plugin-newrelic-dashboard': patch
---
Fix the styles for NewRelicDashboard, add more responsiveness
@@ -31,7 +31,7 @@ import useObservable from 'react-use/lib/useObservable';
const useStyles = makeStyles(
theme => ({
cardSelect: {
margin: '15px 10px 0 0',
margin: theme.spacing(2, 1, 0, 0),
},
img: {
width: '100%',
@@ -30,11 +30,11 @@ interface TabPanelProps {
}
const tabPanelStyles = makeStyles(
{
theme => ({
tabPanel: {
marginTop: '4px',
marginTop: theme.spacing(0.5),
},
},
}),
{ name: 'BackstageNewRelicDashboardTabPanel' },
);