Skip to content

Commit f76eda0

Browse files
committed
Fix colors and paddings
1 parent 7189c65 commit f76eda0

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/components/ContentArea.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const ContentAreaContainer = styled.div`
88
margin-left: ${SIDEBAR_WIDTH};
99
}
1010
padding: 0 0.5rem;
11-
margin-bottom: 3rem;
11+
background-color: #FCFCFC;
1212
`
1313

1414
class ContentArea extends React.Component {

src/templates/CourseContentTemplate.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ const StyledIcon = styled(FontAwesomeIcon)`
2727
font-size: 1em;
2828
`
2929

30-
const ContentWrapper = styled.div``
30+
const ContentWrapper = styled.div`
31+
`
3132

3233
const UpLink = styled(Link)`
3334
color: #332c2cb3 !important;

src/templates/CoursePartOverviewTemplate.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { loggedIn } from '../services/moocfi'
1919

2020
const ContentWrapper = styled.div`
2121
margin-top: 1rem;
22+
padding-bottom: 2rem;
2223
2324
p {
2425
margin-bottom: 2rem;

src/templates/theme.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ body {
5454
font-weight: 400;
5555
line-height: 1.5;
5656
text-align: left;
57-
background-color: #fff;
57+
background-color: white;
5858
}
5959

6060
p {

0 commit comments

Comments
 (0)