aboutsummaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2022-08-26 11:59:22 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-08-26 11:59:22 +0200
commitc28e67f262180c84fecbbee7dcbaaa217c836ba3 (patch)
tree4bf68f223429d21693f14a992467eb2776192b41 /dist
parentf73a31c82e152e28e84fb698edfd763105e933b5 (diff)
downloadFlightCore-c28e67f262180c84fecbbee7dcbaaa217c836ba3.tar.gz
FlightCore-c28e67f262180c84fecbbee7dcbaaa217c836ba3.zip
Add a force crash button
Diffstat (limited to 'dist')
-rw-r--r--dist/css/main.css9
-rw-r--r--dist/index.html1
2 files changed, 10 insertions, 0 deletions
diff --git a/dist/css/main.css b/dist/css/main.css
index 2b5cbee0..2180fafe 100644
--- a/dist/css/main.css
+++ b/dist/css/main.css
@@ -62,6 +62,15 @@ counter-result {
padding: 1.5rem 1rem;
}
+panic-button {
+ cursor: pointer;
+ user-select: none;
+ -webkit-user-select: none;
+ border: solid 1px;
+ border-radius: 5px;
+ padding: .875rem 3rem;
+}
+
backend-ping {
position: absolute;
top: 1rem;
diff --git a/dist/index.html b/dist/index.html
index c57eabc8..9c242c36 100644
--- a/dist/index.html
+++ b/dist/index.html
@@ -6,6 +6,7 @@
<div class="hello">Click for Hello</div>
<counter-button>ADD</counter-button>
<counter-result>.</counter-result>
+ <panic-button>Panic Button</panic-button>
<backend-ping class="server"></backend-ping>
</body>
</html>