Skip to content

Commit f0993be

Browse files
committed
feat: add background color to CommentSystem and blogPost templates for improved aesthetics
1 parent 440a080 commit f0993be

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/components/CommentSystem/styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ export const Container = styled.div`
55
flex-direction: column;
66
width: 100%;
77
height: 100%;
8+
background-color: ${({ theme }) => theme.colors.background};
89
`;

src/templates/blogPost/styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export const Container = styled(motion.section)`
66
flex-direction: column;
77
height: 100%;
88
margin-top: 20px;
9+
background-color: ${(props) => props.theme.colors.background};
910
1011
&.halloween {
1112
color: #000;

0 commit comments

Comments
 (0)