diff --git a/packages/theme/styles/_layouts.scss b/packages/theme/styles/_layouts.scss
index 0b7111c7b9..440793779e 100644
--- a/packages/theme/styles/_layouts.scss
+++ b/packages/theme/styles/_layouts.scss
@@ -27,8 +27,7 @@ button {
   cursor: pointer;
 }
 input {
-  font-family: inherit;
-  font-size: inherit;
+  font: inherit;
   background-color: transparent;
   outline: none;
   color: var(--theme-caption-color);
diff --git a/packages/ui/src/components/EditBox.svelte b/packages/ui/src/components/EditBox.svelte
index becac57264..3334c6cff3 100644
--- a/packages/ui/src/components/EditBox.svelte
+++ b/packages/ui/src/components/EditBox.svelte
@@ -77,7 +77,7 @@
     margin: -4px;
     padding: 2px;
     border: 2px solid transparent;
-    border-radius: .125rem;
+    border-radius: 2px;
 
     &:focus {
       border-color: var(--primary-button-enabled);