diff --git a/src/Components/Selectable.svelte b/src/Components/Selectable.svelte
index cca8a80..aa4bf1a 100644
--- a/src/Components/Selectable.svelte
+++ b/src/Components/Selectable.svelte
@@ -2,10 +2,16 @@
export let name;
export let id;
export let label;
+
+ function handleInput(event){
+ if (event.key === "Enter"){
+ document.getElementById(id).checked = true;
+ }
+ }
-
+
\ No newline at end of file
diff --git a/src/DeviceSetup/CompatibilityWarn.svelte b/src/DeviceSetup/CompatibilityWarn.svelte
index e953e9a..e3b41c9 100644
--- a/src/DeviceSetup/CompatibilityWarn.svelte
+++ b/src/DeviceSetup/CompatibilityWarn.svelte
@@ -1,7 +1,7 @@
Unrecognized Device
\ No newline at end of file
diff --git a/src/DeviceSetup/NameDevice.svelte b/src/DeviceSetup/NameDevice.svelte
index 22ef473..7971ee4 100644
--- a/src/DeviceSetup/NameDevice.svelte
+++ b/src/DeviceSetup/NameDevice.svelte
@@ -33,4 +33,8 @@
color: white;
border: none;
}
+
+ button:focus-visible {
+ outline: white solid 2px;
+ }
\ No newline at end of file
diff --git a/src/Devices/DeviceSetup.svelte b/src/Devices/DeviceSetup.svelte
index 81066e8..f3c26e9 100644
--- a/src/Devices/DeviceSetup.svelte
+++ b/src/Devices/DeviceSetup.svelte
@@ -69,6 +69,10 @@
background: none;
}
+ button:focus-visible {
+ outline: orange solid 2px;
+ }
+
.closeImg {
width: 30px;
}