Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit bcf70cb

Browse files
authored
Merge branch 'EddieHubCommunity:main' into main
2 parents f584fde + 1bbcc8b commit bcf70cb

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

CHANGELOG.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.50.14](https://github.com/EddieHubCommunity/LinkFree/compare/v0.50.13...v0.50.14) (2021-12-15)
2+
3+
4+
### Bug Fixes
5+
6+
* name alignment issue on small screens ([#817](https://github.com/EddieHubCommunity/LinkFree/issues/817)) ([ebbe0e1](https://github.com/EddieHubCommunity/LinkFree/commit/ebbe0e13288ad059af8bbbd81430a481953a5744))
7+
8+
9+
110
## [0.50.13](https://github.com/EddieHubCommunity/LinkFree/compare/v0.50.12...v0.50.13) (2021-12-14)
211

312

@@ -34,12 +43,3 @@
3443

3544

3645

37-
## [0.50.9](https://github.com/EddieHubCommunity/LinkFree/compare/v0.50.8...v0.50.9) (2021-12-10)
38-
39-
40-
### Bug Fixes
41-
42-
* add The Algorithms ([#797](https://github.com/EddieHubCommunity/LinkFree/issues/797)) ([e3e0625](https://github.com/EddieHubCommunity/LinkFree/commit/e3e062501a00c4431af7642ad422a30d233550f4))
43-
44-
45-

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkfree",
3-
"version": "0.50.13",
3+
"version": "0.50.14",
44
"private": false,
55
"homepage": "http://linkfree.eddiehub.org/",
66
"dependencies": {

src/Components/Profile.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ function Profile({ profile, username }) {
2929
className="p-mr-2 p-mt-2"
3030
/>
3131
</Avatar>
32-
<h1 className="p-m-2">{name}</h1>
33-
<h4 className="">({username})</h4>
32+
<div className="p-d-flex p-flex-column p-flex-sm-row p-jc-center p-ai-center">
33+
<h1 className="p-m-2">{name}</h1>
34+
<h4 className="p-my-0">({username})</h4>
35+
</div>
3436
</div>
3537
<div className="p-d-flex p-jc-center w-50">
3638
<p>{bio}</p>

0 commit comments

Comments
 (0)