We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In index page, when profile url is short, profile image goes right. In other words, float: right does not work. So I resolved this problem like below.
float: right
/* On source/scss/_partial/sidebar.scss (Modify the file like below) */ .... #about-panel { display: flex; position: relative; border-bottom: 1px solid #eeeeee; padding-bottom: 10px; .info { .title { font-size: 18px; } .url { color: #666666; font-size: 16px; font-weight: 200; } .bio { padding-top: 14px; font-size: 15px; font-weight: 200; color: #777777; } } .avatar { float: right; position: absolute; right: 0; margin-left: 50px; border-radius: 100%; border: 3px solid #F2F5F7; width: 86px; height: 86px; } } ....
The text was updated successfully, but these errors were encountered:
Nice changes, feel free to commit a pull request
Sorry, something went wrong.
No branches or pull requests
In index page, when profile url is short, profile image goes right.
In other words,
float: right
does not work.So I resolved this problem like below.
The text was updated successfully, but these errors were encountered: