Skip to content

Commit

Permalink
More styling
Browse files Browse the repository at this point in the history
  • Loading branch information
markohanesian committed Jul 9, 2024
1 parent e0f21e3 commit 469c088
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/CommentInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default function CommentInput({ id, comments }) {
sx={{ flex: 1 }}
/>
<Stack direction="row" spacing={1}>
<Button variant="contained" color="primary" onClick={addComment}>
<Button variant="contained" onClick={addComment} sx={{background: "rgb(139, 195, 74)", color: "black"}}>
Post
</Button>
<Liker />
Expand Down
1 change: 1 addition & 0 deletions src/components/Liker.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const ThumbUpButtonClicked = {
}

const ThumbUpButton = {
fill: "white",
backgroundColor: 'transparent',
border: 'none',
padding: '6px',
Expand Down
2 changes: 1 addition & 1 deletion src/components/comment.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const CommentStyle = {
flexDirection: 'column',
marginLeft: '1rem',
padding: '1rem',
backgroundColor: 'whitesmoke'
color: "white"
}

const CommentUser = {
Expand Down

0 comments on commit 469c088

Please sign in to comment.