add footer with link to source

This commit is contained in:
filifa 2025-12-11 23:49:35 -05:00
parent b7aae4b1f1
commit dafe3ac7c5
2 changed files with 11 additions and 0 deletions

View File

@ -78,6 +78,10 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
</div> </div>
</div> </div>
<footer>
<a href="https://scm.dairydemon.net/filifa/mcalc">source</a>
</footer>
<script type="module" src="main.js"></script> <script type="module" src="main.js"></script>
</body> </body>
</html> </html>

View File

@ -113,3 +113,10 @@ button {
grid-template-columns: subgrid; grid-template-columns: subgrid;
gap: inherit; gap: inherit;
} }
footer {
display: flex;
justify-content: center;
font-size: small;
margin: 5%;
}