diff --git a/webdata/index.html b/webdata/index.html
index a011d0b..85bf7f9 100644
--- a/webdata/index.html
+++ b/webdata/index.html
@@ -1,7 +1,7 @@
-
+
Remote Touchpad
diff --git a/webdata/main.css b/webdata/main.css
index bf66d6a..3fce1b9 100644
--- a/webdata/main.css
+++ b/webdata/main.css
@@ -177,33 +177,37 @@ textarea {
align-items: stretch;
padding: 0;
gap: 0;
+ flex-direction: row;
+}
+
+#text-input .buttons {
+ flex-direction: column;
}
#text-input .buttons > button {
- border-bottom: none;
+ border-top: none;
border-right: none;
}
-#text-input .buttons > button:first-child {
- border-left: none;
+#text-input .buttons > button:last-child {
+ border-bottom: none;
}
-@media (min-aspect-ratio: 4/3) {
+@media (max-aspect-ratio: 4/3) {
#text-input {
- flex-direction: row;
- }
-
- #text-input .buttons {
flex-direction: column;
}
- #text-input .buttons > button,
- #text-input .buttons > button:first-child {
+ #text-input .buttons {
+ flex-direction: row;
+ }
+
+ #text-input .buttons > button {
border-top: 1px solid black;
- border-left: 1px solid black;
+ border-bottom: none;
}
#text-input .buttons > button:first-child {
- border-top: none;
+ border-left: none;
}
}