LeaPhant / skyblock-stats

A beautiful SkyBlock profile viewer 🌹
https://sky.lea.moe
MIT License
168 stars 33 forks source link

additional_stats_container is too large #44

Closed cyandev closed 4 years ago

cyandev commented 4 years ago

The additional stats container (which has login information, skill average, etc) is wrongly sized at 1590px and up. Currently it is sized by

#additional_stats_container{
        white-space: normal;
        width: calc(1120px - 150px);
}

This is (assumably) calculated by taking the width off the "wrapper" div at 1590px (1120px) and subtracting the 150px of padding on the base stats container given to the skin render. This doesn't account for the 30px padding on the "basic_stats" div leading to the additional stats being too long.

Screenshot of issue: image

cyandev commented 4 years ago

Im going to try to find a good solution to this tomorrow morning