Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions render_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ def render_pages_to_png(

for html_file in html_files:
filename = html_file.name

if filename == "usingplanttracerwebapp.html":
# Skip the webapp specific page for this rendering (for now)
continue

stem = html_file.stem
output_filename = f"{stem}-{viewport_name}.png"
output_path = output_dir / output_filename
Expand Down
7 changes: 7 additions & 0 deletions static/css/desktop/desktopUsingPT.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@
text-align: center !important;
}

.bigSubStep li {
font-family: 'Outfit', sans-serif !important;
width: 100% !important;
text-align: center !important;
font-size: 1.5em !important;

}
.downloadApp:hover,
.downloadApp:focus{
cursor: pointer;
Expand Down
Loading