diff options
-rw-r--r-- | static/index.html | 1 | ||||
-rw-r--r-- | static/style.css | 8 |
2 files changed, 7 insertions, 2 deletions
diff --git a/static/index.html b/static/index.html index efaf070..b411bb2 100644 --- a/static/index.html +++ b/static/index.html @@ -21,5 +21,6 @@ <dialog popover id="settings_modal"> <iframe width="100%" height="100%" style="border: none;" src="/settings"></iframe> </dialog> + <a target="_blank" href="https://git.tempest.dev/semi/tree/">Source</a> </div> <div id="messages"> diff --git a/static/style.css b/static/style.css index 9c139bf..9957ac9 100644 --- a/static/style.css +++ b/static/style.css @@ -136,10 +136,12 @@ body > div#messages { flex-direction: row; justify-content: end; - & p { + & p, + & a { margin: 0; text-align: right; - font-style: italic; + text-decoration: none; + margin-left: 16px; } & > button { @@ -148,6 +150,8 @@ body > div#messages { border: none; margin-left: 16px; cursor: pointer; + font-family: inherit; + font-size: inherit; } } |