From 20b11d17f529c3bc784ae277bd86639a0df3b290 Mon Sep 17 00:00:00 2001 From: Ari Stathopoulos Date: Mon, 3 Oct 2022 13:44:50 +0200 Subject: [PATCH] basic styles --- .../block-library/src/input-field/style.scss | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/packages/block-library/src/input-field/style.scss b/packages/block-library/src/input-field/style.scss index a072e33beb56d6..680272f5750a5f 100644 --- a/packages/block-library/src/input-field/style.scss +++ b/packages/block-library/src/input-field/style.scss @@ -1,4 +1,21 @@ .wp-block-input-field-label { display: block; - background: #f00 !important; + + p { + margin-block-end: 0; + margin-bottom: 0; + } +} + +.wp-block-input-field { + padding: 0.5em; + border: 1px solid currentColor; + opacity: 0.75; + border-radius: 0; + + &:focus, + &:active, + &:focus-within { + outline: 2px solid currentColor; + } }