Skip to content

Commit

Permalink
feat(web): add repo infomation in web app
Browse files Browse the repository at this point in the history
  • Loading branch information
Romelium committed Feb 16, 2025
1 parent 75b4b22 commit 1e1cccf
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
5 changes: 5 additions & 0 deletions web/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ <h2>Parameters</h2>
<button id="convertButton">Convert</button>
<div id="preview"></div>
<a id="downloadLink" style="display: none;">Download SVG</a>

<footer>
<p>Find the source code and contribute on <a href="https://github.com/Romelium/FrameSVG" target="_blank"
rel="noopener noreferrer">GitHub</a>.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
Expand Down
21 changes: 20 additions & 1 deletion web/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,23 @@ button:hover {
font-size: 1rem;
margin-top: 15px;
}
}
}

/* Footer Styles */
footer {
text-align: center;
border-top: 1px solid #ccc;
width: 95%;
max-width: 1000px;
box-sizing: border-box;

}

footer a {
color: blue;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}

0 comments on commit 1e1cccf

Please sign in to comment.