From 9562eefd8e67cf5ef16ae8468a8b7c00d95c6204 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Thu, 26 Aug 2021 23:34:18 +0200 Subject: [PATCH] editbox border 2px Signed-off-by: Andrey Platov --- packages/theme/styles/_layouts.scss | 3 +-- packages/ui/src/components/EditBox.svelte | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) 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);