Skip to content
Snippets Groups Projects
Commit 54ec9102 authored by Matt Kirby's avatar Matt Kirby
Browse files

ppost stylings modification

parent bca16641
No related branches found
No related tags found
1 merge request!7Resolve "Adding basic post component"
...@@ -25,7 +25,7 @@ const Post: FC<PropsWithChildren<PostProps>> = ({ ...@@ -25,7 +25,7 @@ const Post: FC<PropsWithChildren<PostProps>> = ({
return ( return (
<div className={styles.post}> <div className={styles.post}>
<div className={styles.header}> <div className={styles.header}>
<Avatar User={User}/> <Avatar User={User} ShowInitial/>
<div className={styles.headerInfo}> <div className={styles.headerInfo}>
<div className={styles.headerUserInfo}> <div className={styles.headerUserInfo}>
<p className={styles.name} >{User.FirstName} {User.LastName}</p> <p className={styles.name} >{User.FirstName} {User.LastName}</p>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
margin-bottom: 8px; margin-bottom: 8px;
height: 48px; height: 56px;
} }
.headerInfo { .headerInfo {
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
padding: 12px 16px; padding: 12px 16px;
border-radius: 24px; border-radius: 24px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
margin: 0px 0px 0px 24px;
} }
.postContent { .postContent {
...@@ -59,7 +60,8 @@ ...@@ -59,7 +60,8 @@
} }
.postActions { .postActions {
padding: 8px 8px; padding: 0px 8px;
padding-top: 4px;
display: flex; display: flex;
width: 100%; width: 100%;
max-width: 200px; max-width: 200px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment