Skip to content

Commit

Permalink
span and svg fix (#1980)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmoyAtb committed Feb 25, 2022
1 parent dbe1ade commit 213dc31
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const useStyles = makeStyles(({ breakpoints, constants, palette }: CSFTheme) =>
alignItems: "center",
justifyContent: "center",
"& svg": {
width: constants.generalUnit * 2.5,
fill: constants.fileSystemItemRow.icon
}
},
Expand All @@ -40,8 +39,11 @@ const useStyles = makeStyles(({ breakpoints, constants, palette }: CSFTheme) =>
maxWidth: constants.generalUnit * 24,
border: `1px solid ${palette.additional["gray"][6]}`,
boxShadow: constants.filesTable.gridItemShadow,
"& span": {
fontSize: "32px"
},
"& svg": {
width: "30%"
fontSize: "32px"
},
[breakpoints.down("lg")]: {
height: constants.generalUnit * 16
Expand Down

0 comments on commit 213dc31

Please sign in to comment.