How to remove focus border from input box in dawn theme

Hi, dear community!

Anyone can help me with how can I remove the focus border from the input box in the dawn theme?

please see the attached image: https://paste.pics/I8048

Screenshot - 2022-08-20T221740.255.png

Thanks

Hi, @ashraful41

You can try this code

  1. Go to Online Store-> Theme->Edit code
  2. Asset-> base.css ->paste the below code at the bottom of the file.
.field__input:focus, .select__select:focus, .customer .field input:focus, .customer select:focus, .localization-form__select:focus.localization-form__select:after ,.field__input:focus-visible, .select__select:focus-visible, .customer .field input:focus-visible, .customer select:focus-visible, .localization-form__select:focus-visible.localization-form__select:after {
    box-shadow: 0 0 0 0 !important;
}
1 Like

Working thank you !