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
8 changes: 8 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,10 @@ btn-light:hover {
display: block;
page-break-before: always;
}

.photo-row {
display: block;
}
}

.print-wrapper > .photo-card {
Expand Down Expand Up @@ -730,3 +734,7 @@ btn-light:hover {
background-color: red;
border-radius: 50%;
}

.print-header-title {
font-size: 1.2em !important;
}
2 changes: 1 addition & 1 deletion src/components/print_section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const PrintSection: React.FC<PrintSectionProps> = ({
const existingHeader = printWrapper.querySelector('.print-header')
if (!existingHeader) {
const header = document.createElement('div')
header.className = 'print-header'
header.className = 'print-header print-header-title'
header.innerText = process.env.REACT_APP_PRINT_TITLE || ''
printWrapper.prepend(header) // Add header at the top
return header // Return the header so we can remove it later
Expand Down
Loading