Saleor 1670 visual improvements for dashboard homepage (#850)
* Fix overflow for card hover * Add padding on arrow icon * Update storybook for homepage
This commit is contained in:
parent
ca8fcfec50
commit
101e2c7cdc
2 changed files with 13 additions and 9 deletions
|
@ -14,9 +14,13 @@ import React from "react";
|
|||
import { FormattedMessage } from "react-intl";
|
||||
|
||||
const useStyles = makeStyles(
|
||||
theme => ({
|
||||
() => ({
|
||||
arrowIcon: {
|
||||
width: theme.spacing(4)
|
||||
textAlign: "right",
|
||||
width: "auto"
|
||||
},
|
||||
tableCard: {
|
||||
overflow: "hidden"
|
||||
},
|
||||
tableRow: {
|
||||
cursor: "pointer"
|
||||
|
@ -48,7 +52,7 @@ const HomeNotificationTable: React.FC<HomeNotificationTableProps> = props => {
|
|||
const classes = useStyles(props);
|
||||
|
||||
return (
|
||||
<Card>
|
||||
<Card className={classes.tableCard}>
|
||||
<ResponsiveTable>
|
||||
<TableBody className={classes.tableRow}>
|
||||
<RequirePermissions
|
||||
|
|
|
@ -85667,7 +85667,7 @@ exports[`Storyshots Views / HomePage default 1`] = `
|
|||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id"
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id HomeNotificationTable-tableCard-id MuiPaper-rounded-id"
|
||||
>
|
||||
<div
|
||||
class="ResponsiveTable-root-id"
|
||||
|
@ -86382,7 +86382,7 @@ exports[`Storyshots Views / HomePage loading 1`] = `
|
|||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id"
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id HomeNotificationTable-tableCard-id MuiPaper-rounded-id"
|
||||
>
|
||||
<div
|
||||
class="ResponsiveTable-root-id"
|
||||
|
@ -86756,7 +86756,7 @@ exports[`Storyshots Views / HomePage no data 1`] = `
|
|||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id"
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id HomeNotificationTable-tableCard-id MuiPaper-rounded-id"
|
||||
>
|
||||
<div
|
||||
class="ResponsiveTable-root-id"
|
||||
|
@ -87001,7 +87001,7 @@ exports[`Storyshots Views / HomePage no permissions 1`] = `
|
|||
>
|
||||
<div>
|
||||
<div
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id"
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id HomeNotificationTable-tableCard-id MuiPaper-rounded-id"
|
||||
>
|
||||
<div
|
||||
class="ResponsiveTable-root-id"
|
||||
|
@ -87148,7 +87148,7 @@ exports[`Storyshots Views / HomePage order permissions 1`] = `
|
|||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id"
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id HomeNotificationTable-tableCard-id MuiPaper-rounded-id"
|
||||
>
|
||||
<div
|
||||
class="ResponsiveTable-root-id"
|
||||
|
@ -87628,7 +87628,7 @@ exports[`Storyshots Views / HomePage product permissions 1`] = `
|
|||
>
|
||||
<div>
|
||||
<div
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id"
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id HomeNotificationTable-tableCard-id MuiPaper-rounded-id"
|
||||
>
|
||||
<div
|
||||
class="ResponsiveTable-root-id"
|
||||
|
|
Loading…
Reference in a new issue