Skip to content

Commit

Permalink
style:rwsponsive updates
Browse files Browse the repository at this point in the history
  • Loading branch information
okorie2 committed Oct 29, 2024
1 parent 1b5cb41 commit 7a775a5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/app/components/Dialogs/deleteChartDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const useStyles = makeStyles(() =>
borderRadius: "10px",
paddingRight: "2rem",
position: "relative",
paddingLeft: "3.5rem",
paddingLeft: "3rem",
backgroundColor: "#fff",
boxShadow:
"0px 14.8787px 22.318px rgba(0, 0, 0, 0.05), 0px 4.4636px 7.43933px rgba(0, 0, 0, 0.05), 0px 0.743933px 7.43933px rgba(0, 0, 0, 0.05)",
Expand Down
15 changes: 8 additions & 7 deletions src/app/components/Dialogs/deleteDatasetDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ const useStyles = makeStyles(() =>
width: 646,
borderRadius: "10px",
position: "relative",
padding: "2.5rem 2.5rem 2.5rem 4.5rem",
padding: "2.5rem 2.5rem 2.5rem 3.5rem",
backgroundColor: "#fff",
boxShadow:
"0px 14.8787px 22.318px rgba(0, 0, 0, 0.05), 0px 4.4636px 7.43933px rgba(0, 0, 0, 0.05), 0px 0.743933px 7.43933px rgba(0, 0, 0, 0.05)",
"@media (max-width: 577px)": {
width: "90%",
"@media (max-width: 650px)": {
width: "80%",
},
},
})
Expand Down Expand Up @@ -74,11 +74,12 @@ export default function DeleteDatasetDialog(props: Props) {
<form
onSubmit={() => props.handleDelete(props.cardId)}
data-cy="delete-dataset-item-form"
// css={`
// width: 80%;
// `}
>
<div>
<div
css={`
width: 80%;
`}
>
<IconButton
onClick={() => props.setModalDisplay(false)}
css={`
Expand Down
5 changes: 2 additions & 3 deletions src/app/components/Dialogs/logOutDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,14 @@ export default function LogOutDialog(props: Props) {
<div
css={`
width: 80%;
position: relative;
`}
>
<IconButton
onClick={() => props.setModalDisplay(false)}
css={`
position: absolute;
right: -93px;
top: -16px;
right: 8px;
top: 6px;
color: #231d2c;
`}
>
Expand Down

0 comments on commit 7a775a5

Please sign in to comment.