Mirror of
0
fork

Configure Feed

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

Update footer links and styles in Layout.astro (#3)

authored by

Felix Schneider and committed by
GitHub
ef667550 91270d43

+15 -2
+15 -2
src/layouts/Layout.astro
··· 21 21 <a href="/" class="logo">npmx.<span>digest</span></a> 22 22 <div class="links"> 23 23 <a href="/archive">Archive</a> 24 - <a href="https://github.com/npmx-dev/npmx.dev">GitHub</a 25 - > 24 + <a href="https://github.com/npmx-dev/npmx.dev">GitHub</a> 26 25 </div> 27 26 </nav> 28 27 </header> ··· 31 30 </main> 32 31 <footer> 33 32 <p>AI generated updates for the npmx ecosystem.</p> 33 + <a href="https://github.com/trueberryless-org/npmx-digest" class="footer-link">Source Code</a> 34 34 </footer> 35 35 </div> 36 36 </body> ··· 103 103 } 104 104 105 105 footer { 106 + display: flex; 107 + justify-content: space-between; 108 + align-items: center; 106 109 margin-top: 6rem; 107 110 padding-top: 2rem; 108 111 border-top: 1px solid #1a1a1a; 109 112 font-size: 0.8rem; 110 113 color: var(--text-muted); 114 + } 115 + 116 + .footer-link { 117 + color: var(--text-muted); 118 + text-decoration: none; 119 + transition: color 0.2s; 120 + } 121 + 122 + .footer-link:hover { 123 + color: var(--accent); 111 124 } 112 125 </style>