-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #254 from fairDataSociety/feat/invites
feat: invites improvements
- Loading branch information
Showing
9 changed files
with
123 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { styled } from "@mui/system"; | ||
|
||
const NarrowPage = styled("div")({ | ||
display: "flex", | ||
flexDirection: "column", | ||
maxWidth: "700px", | ||
minHeight: "500px", | ||
marginTop: "30px", | ||
width: "100%", | ||
margin: "auto", | ||
"& > .MuiFormControl-root": { | ||
margin: "20px 0", | ||
}, | ||
}); | ||
|
||
export default NarrowPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { Box, Typography } from "@mui/material"; | ||
import intl from "react-intl-universal"; | ||
|
||
import Title from "../../components/title/title.component"; | ||
import NarrowPage from "../../components/narrow-page/narrow-page"; | ||
|
||
const BBRules = () => { | ||
return ( | ||
<NarrowPage> | ||
<Box sx={{ flexGrow: 1, overflow: "hidden", px: 3 }}> | ||
<Title>{intl.get("BB_RULES")}</Title> | ||
<Typography | ||
variant="body1" | ||
align="center" | ||
sx={{ | ||
marginTop: "20px", | ||
}} | ||
> | ||
{intl.get("BB_RULES_DESCRIPTION")} | ||
</Typography> | ||
</Box> | ||
</NarrowPage> | ||
); | ||
}; | ||
|
||
export default BBRules; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { Box, Typography } from "@mui/material"; | ||
import intl from "react-intl-universal"; | ||
|
||
import Title from "../../components/title/title.component"; | ||
import NarrowPage from "../../components/narrow-page/narrow-page"; | ||
|
||
const DataSharingRules = () => { | ||
return ( | ||
<NarrowPage> | ||
<Box sx={{ flexGrow: 1, overflow: "hidden", px: 3 }}> | ||
<Title>{intl.get("DATA_SHARING_RULES")}</Title> | ||
<Typography | ||
variant="body1" | ||
align="center" | ||
sx={{ | ||
marginTop: "20px", | ||
}} | ||
> | ||
{intl.get("DATA_SHARING_RULES_DESCRIPTION")} | ||
</Typography> | ||
</Box> | ||
</NarrowPage> | ||
); | ||
}; | ||
|
||
export default DataSharingRules; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters