Skip to content

Commit

Permalink
padding tweaks #209
Browse files Browse the repository at this point in the history
  • Loading branch information
io53 committed Aug 20, 2024
1 parent dadb9c7 commit 3f3b43d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/RDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function RDialog(props) {
<>
<Modal isOpen={props.isOpen} onClose={props.onClose} size={props.size || "xl"} >
<ModalOverlay />
<ModalContent>
<ModalContent marginRight={4} marginLeft={4}>
<ModalHeader style={{ marginTop: 15, marginRight: 40 }}>{props.title}</ModalHeader>
<ModalCloseButton style={{ margin: 15 }}>
<IconButton isRound={true} className="navButton" variant="nav"><MdClose /></IconButton>
Expand Down
2 changes: 1 addition & 1 deletion src/states/SensorCompare.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function SensorCompare(props) {
{i18next.t("compare_subtitle")}
</p>
<br />
<Box className='contentImportant' borderRadius={8} width="100%" padding={{ base: "5px", md: "40px" }}>
<Box className='contentImportant' borderRadius={8} width="100%" padding={{ base: "24px", md: "40px" }}>
<Box mb={8} style={descriptionStyle}>
{i18next.t("compare_description")}
</Box>
Expand Down
2 changes: 1 addition & 1 deletion src/states/ShareCenter.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ const ShareCenter = () => {
</center>
:
<>
<Box className='contentImportant' borderRadius={8} width="100%" padding={{ base: "5px", md: "40px" }}>
<Box className='contentImportant' borderRadius={8} width="100%" padding={{ base: "24px", md: "40px" }}>
<Box mb={8} style={descriptionStyle}>
{i18next.t("share_center_description")}
</Box>
Expand Down

0 comments on commit 3f3b43d

Please sign in to comment.