Skip to content

Commit

Permalink
Simplify spacing calculations
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbell committed Oct 13, 2020
1 parent a66f36d commit 2492555
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/DirectoryInformation/DirectoryInformation.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import PropTypes from "prop-types";
import { TableContainer, Table, TableRow, TableCell, makeStyles } from "@material-ui/core";
import { TableContainer, Table, TableRow, TableCell, Paper, makeStyles } from "@material-ui/core";
import webqueue2Theme from "../../theme";

export default function DirectoryInformation({ section }) {
Expand All @@ -9,14 +9,14 @@ export default function DirectoryInformation({ section }) {
const useStyles = makeStyles((theme) => ({
headerCell: {
borderBottom: "none",
paddingTop: "3px",
paddingBottom: "3px",
paddingTop: theme.spacing(0.5),
paddingBottom: theme.spacing(0.5),
},
bodyCell: {
wordBreak: "break-word",
borderBottom: "none",
paddingTop: "3px",
paddingBottom: "3px",
paddingTop: theme.spacing(0.5),
paddingBottom: theme.spacing(0.5),
},
stripedRow: {
'&:nth-of-type(odd)': {
Expand Down

0 comments on commit 2492555

Please sign in to comment.