AngryPowman / hexo-theme-prontera

A light theme for Hexo: http://powman.org
MIT License
72 stars 20 forks source link

Profile image goes right when URL is short #3

Open wldhg opened 6 years ago

wldhg commented 6 years ago

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.

/*
    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;
    }
}
....
AngryPowman commented 6 years ago

Nice changes, feel free to commit a pull request