-
-
Notifications
You must be signed in to change notification settings - Fork 207
Closed
Labels
bugSomething isn't workingSomething isn't workingdesignCreating the Almanac UXCreating the Almanac UXdevelopmentBuilding the Almanac tech stackBuilding the Almanac tech stack
Milestone
Description
For example: https://almanac.httparchive.org/en/2020/css#usage-of-different-grid-layout-techniques
Compared to Chrome and Firefox:
Looks to be due to this word-wrap:
almanac.httparchive.org/src/static/css/2019.css
Lines 1482 to 1484 in e2c77cc
| pre { | |
| margin: 0; | |
| word-wrap: break-word; |
Which is not needed since we allow overflows here:
almanac.httparchive.org/src/static/css/page.css
Lines 791 to 794 in e2c77cc
| .code-block, | |
| pre { | |
| overflow-y: hidden; | |
| overflow-x: auto; |
Guess we should remove the word-wrap but need to see if any other unintended consequences so opening issue for now.,
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingdesignCreating the Almanac UXCreating the Almanac UXdevelopmentBuilding the Almanac tech stackBuilding the Almanac tech stack

