AnsonLai / TeslaServiceManualScraper

This script will download the Tesla Service Manual onto a local doc folder for offline access.
MIT License
65 stars 12 forks source link

Browser sizing issue #10

Closed ktsenvolt closed 2 years ago

ktsenvolt commented 2 years ago

fullscreen partial screen There are some issues with any browser sizing. As you can see it would work with full screen and some files are missing. I can see the whole picture with only a partial browser.

hlarsen commented 2 years ago

not sure if it's the same thing i'm seeing; try removing height: 100% from the steps:

article > div[.body,.taskbody] > ol > li

cleans it up for me. might have to do with design-system css being 5.x instead of 5.4.1 the code is looking for

ktsenvolt commented 2 years ago

.steps > .step { margin-top: 1rem;

height: 100%;

} After I put # before the height. It works. Thank you.