MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add report footer

+17 -1
+4
docs/reports/public/assets/report.css
··· 93 93 overflow-wrap: anywhere; 94 94 } 95 95 96 + .footer { 97 + margin-top: 33px; 98 + } 99 + 96 100 @media screen and (max-width: 772px) { 97 101 body { 98 102 background: none;
+13 -1
docs/reports/src/view.tsx
··· 48 48 </a> 49 49 ); 50 50 51 + const ReportFooter = () => ( 52 + <p class="footer"> 53 + <a href="https://github.com/theMackabu/ant">Ant</a> 54 + <ins> 路 </ins> 55 + <a href="https://github.com/theMackabu/ant/issues/new">Report this on GitHub</a> 56 + </p> 57 + ); 58 + 51 59 const BlankPage = () => ( 52 60 <Shell title="js.report"> 53 61 <Logo /> 54 62 <p> 55 63 <b>404.</b> <ins>That's an error.</ins> 56 64 </p> 57 - <p>If you were given a report link, check the URL and try again.</p> 65 + <p style="margin-top: -10px">If you were given a report link, check the URL and try again.</p> 66 + <p class="footer"> 67 + <a href="https://github.com/theMackabu/ant">Ant on GitHub</a> 68 + </p> 58 69 </Shell> 59 70 ); 60 71 ··· 111 122 <p class="url"> 112 123 <span class="label">This report URL:</span> <a href={url}>{url}</a> 113 124 </p> 125 + <ReportFooter /> 114 126 </Shell> 115 127 ); 116 128 };