this repo has no description
0
fork

Configure Feed

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

fork me on github

alice 185d0142 d0039606

+19
+8
index.html
··· 32 32 <body> 33 33 <div id="root"></div> 34 34 <script type="module" src="/src/main.tsx"></script> 35 + <a 36 + class="github-fork-ribbon" 37 + href="https://github.com/aliceisjustplaying/bluesky-heatmap" 38 + data-ribbon="Fork me on GitHub" 39 + title="Fork me on GitHub" 40 + target="_blank" 41 + >Fork me on GitHub</a 42 + > 35 43 </body> 36 44 </html>
+1
package.json
··· 11 11 }, 12 12 "dependencies": { 13 13 "@atproto/api": "^0.2.7", 14 + "github-fork-ribbon-css": "^0.2.3", 14 15 "react": "^18.2.0", 15 16 "react-calendar-heatmap": "^1.9.0", 16 17 "react-dom": "^18.2.0",
+7
pnpm-lock.yaml
··· 4 4 '@atproto/api': 5 5 specifier: ^0.2.7 6 6 version: 0.2.7 7 + github-fork-ribbon-css: 8 + specifier: ^0.2.3 9 + version: 0.2.3 7 10 react: 8 11 specifier: ^18.2.0 9 12 version: 18.2.0 ··· 1054 1057 requiresBuild: true 1055 1058 dev: true 1056 1059 optional: true 1060 + 1061 + /github-fork-ribbon-css@0.2.3: 1062 + resolution: {integrity: sha512-cmGBV4sivRwmnteSOkqMjN2cnP5/J1SU5aDCVYsBWHmDokZ/JjwGEkduCxY9IULHdCPpw1WSk5Cy8N1LF6jOEw==} 1063 + dev: false 1057 1064 1058 1065 /glob-parent@5.1.2: 1059 1066 resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+1
src/main.tsx
··· 2 2 import 'react-tooltip/dist/react-tooltip.css'; 3 3 import './react-calendar-heatmap.css'; 4 4 import './styles.css'; 5 + import 'github-fork-ribbon-css/gh-fork-ribbon.css'; 5 6 import { App } from './App'; 6 7 7 8 const container = document.getElementById('root');
+2
src/styles.css
··· 21 21 #loginMessage { 22 22 color: red; 23 23 } 24 + 25 + .github-fork-ribbon:before { background-color: #c00; }