github-stats
github-stats copied to clipboard
Overflow problem !
In small width devices some content of language.svg is overflowing. I was trying to fix it and if found the bug.
Problem:
foreignObject {
width: calc(100% - 10px - 32px);
height: calc(100% - 10px - 24px);
}
Fix:
But without the height and width property everything is fine.
foreignObject {
}
Hey @NazmusSayad, thanks for reporting this! This is a duplicate of #57 and discussions should probably continue in that thread.
As for the fix, it would be important to test in a few different browsers and devices before removing those CSS values entirely.