applies a border color and removes the box shadow when the input field is not empty

PHOTO EMBED

Mon Mar 17 2025 11:23:45 GMT+0000 (Coordinated Universal Time)

Saved by @divyasoni23 #css

&:focus,
  &:active,
  &:focus-visible,
  &:focus-within,
  &:not(:placeholder-shown) {
    border-color: $primary !important;
    box-shadow: none !important;
  }
content_copyCOPY