diff options
author | Vitaly Takmazov | 2018-09-10 13:45:18 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | b401c44834d268b3327d9013be67b58d135aefe4 (patch) | |
tree | e1e6d167a6b7d4c4fb2c4a1eefc4d0f181154ac5 /vnext | |
parent | 4b18d7910cd01519f15a3dbdb2d1a74e334f22dc (diff) |
UserInfo styling
Diffstat (limited to 'vnext')
-rw-r--r-- | vnext/src/components/UserInfo.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/components/UserInfo.js b/vnext/src/components/UserInfo.js index 249bcf95..5bbf24bd 100644 --- a/vnext/src/components/UserInfo.js +++ b/vnext/src/components/UserInfo.js @@ -25,7 +25,7 @@ export default class UserInfo extends React.Component { render() { const { user } = this.state; return ( - <div style={{ padding: '14px' }}> + <article style={{ padding: '14px' }}> <Avatar user={user}> <div className="msg-ts">Was online recently</div> </Avatar> @@ -79,7 +79,7 @@ export default class UserInfo extends React.Component { </> } </div> - </div> + </article> ); } } |