From 0a9c9f0e3a3fb63aedc924ff1d0b80c9ace542f6 Mon Sep 17 00:00:00 2001 From: Andrey Morozov Date: Thu, 23 May 2024 19:14:54 +0300 Subject: [PATCH] fix: design review fixes --- src/components/PinInput/PinInput.scss | 1 + src/components/PinInput/__stories__/PinInput.stories.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/PinInput/PinInput.scss b/src/components/PinInput/PinInput.scss index cc32f83f3..dd554e23d 100644 --- a/src/components/PinInput/PinInput.scss +++ b/src/components/PinInput/PinInput.scss @@ -19,6 +19,7 @@ $block: '.#{variables.$ns}pin-input'; // stylelint-disable declaration-no-important padding-inline: 0 !important; text-align: center; + appearance: none; } &_size { diff --git a/src/components/PinInput/__stories__/PinInput.stories.tsx b/src/components/PinInput/__stories__/PinInput.stories.tsx index 9a0781bb6..a15d54e8c 100644 --- a/src/components/PinInput/__stories__/PinInput.stories.tsx +++ b/src/components/PinInput/__stories__/PinInput.stories.tsx @@ -81,7 +81,7 @@ export const Disabled: Story = { export const Placeholder: Story = { args: { ...Default.args, - placeholder: '§', + placeholder: '●', }, };