aboutsummaryrefslogtreecommitdiff
path: root/src/components/ContentSection/ContentSection.js
diff options
context:
space:
mode:
authorEug-VS <eug-vs@keemail.me>2020-01-11 19:42:47 +0300
committerEug-VS <eug-vs@keemail.me>2020-01-11 19:42:47 +0300
commit31a205016f9e811ece59f3f1101a06ebcd846cd2 (patch)
tree9bdacebc5c1e30c97a2476a56e595202e104ffef /src/components/ContentSection/ContentSection.js
parentb2fe1b816044b8630f570c04c884c8ffcf3e3e61 (diff)
downloadchrono-cube-ui-31a205016f9e811ece59f3f1101a06ebcd846cd2.tar.gz
Markup initial Contribute page
Diffstat (limited to 'src/components/ContentSection/ContentSection.js')
-rw-r--r--src/components/ContentSection/ContentSection.js14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/components/ContentSection/ContentSection.js b/src/components/ContentSection/ContentSection.js
index d5b9340..fc431f3 100644
--- a/src/components/ContentSection/ContentSection.js
+++ b/src/components/ContentSection/ContentSection.js
@@ -9,8 +9,18 @@ import {
const useStyles = makeStyles(theme => ({
content: {
- padding: theme.spacing(2),
- }
+ padding: theme.spacing(0, 2, 1, 2),
+ marginBottom: theme.spacing(1),
+
+ '& a': {
+ color: theme.palette.secondary.light,
+ },
+ '& .MuiButton-root': {
+ color: theme.palette.background.paper,
+ margin: theme.spacing(2, 2, 2, 0),
+ fontWeight: 'bold',
+ },
+ },
}));
const ContentSection = ({ sectionName, children }) => {