Skip to content

Commit ea70702

Browse files
committed
Tweaker hidden css
1 parent 3fc5ef7 commit ea70702

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/components/main-section/content-view/pdf-exporter/PdfExporter.module.css

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
display: flex;
4646
gap: 0.5rem;
4747
padding: 0.5rem 0.25rem;
48+
overflow-y: hidden;
4849

4950
visibility: visible;
5051
max-height: 5rem;
@@ -56,5 +57,7 @@
5657
visibility: hidden;
5758
max-height: 0;
5859
padding: 0 0.25rem;
60+
align-items: center;
5961
}
62+
6063
}

src/components/main-section/content-view/pdf-exporter/download-link/DownloadLink.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const DownloadLink = ({ href, small, icon, disabled, className, children
3636
}
3737
}, 200);
3838

39-
const timeout = window.setTimeout(() => {
39+
const timeout = setTimeout(() => {
4040
clearInterval(interval);
4141
setIsWaiting(false);
4242
}, 10000);

0 commit comments

Comments
 (0)