Skip to content

Commit

Permalink
fix style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aorin committed Dec 17, 2024
1 parent c9cf195 commit a2b6352
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 4 additions & 2 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ import { makeStyles } from "@mui/styles";

const useStyles = makeStyles({
mainContainer: {
height: "calc(100% - 50px)",
height: "100%",
display: "flex",
flexDirection: "column"
flexDirection: "column",
paddingBottom: "50px",
overflowY: "auto"
},
container: {
height: "100%",
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/pages/dayDetails/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ import LoadingSpinner from "../../globalComponents/LoadingSpinner";
const useStyles = makeStyles(() => ({
paper: {
background: "white",
padding: "20px 30px",
margin: "0px 0px 50px 0px",
padding: "20px 30px"
}
})
);
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/pages/dayList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ import LoadingSpinner from "../../globalComponents/LoadingSpinner";
const useStyles = makeStyles({
paper: {
background: "white",
padding: "20px 30px",
margin: "0px 0px 50px 0px",
padding: "20px 30px"
},
linkImitator: {
cursor: "pointer",
Expand Down

0 comments on commit a2b6352

Please sign in to comment.